Trigger ASP page

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Shahid Juma

    Trigger ASP page

    Hi,

    I was wondering if it is possible calling an ASP page automatically at a
    certain time. Kind of how a job is scheduled in SQL Server.

    Thanks,
    Shahid


  • Bob Barrows [MVP]

    #2
    Re: Trigger ASP page

    Shahid Juma wrote:[color=blue]
    > Hi,
    >
    > I was wondering if it is possible calling an ASP page automatically
    > at a certain time. Kind of how a job is scheduled in SQL Server.
    >[/color]


    Bob Barrows
    --
    Microsoft MVP -- ASP/ASP.NET
    Please reply to the newsgroup. The email account listed in my From
    header is my spam trap, so I don't check it very often. You will get a
    quicker response by posting to the newsgroup.


    Comment

    • Shahid Juma

      #3
      Re: Trigger ASP page

      hi,

      I have a vbs script that I have scheduled in the task manager to execute at
      a certain time. However, in this script I had a call to a JScript function
      but when I include and run the task, I get an error.

      How do I include this in the vbs file?

      ------
      function GetUnixTime(str Date) {
      if (strDate) {
      return new Date(strDate).v alueOf();
      }
      else {
      return 0;
      }
      }
      -------

      Thanks,
      Shahid


      "Bob Barrows [MVP]" <reb01501@NOyah oo.SPAMcom> wrote in message
      news:OQrllpowEH A.3528@tk2msftn gp13.phx.gbl...[color=blue]
      > Shahid Juma wrote:[color=green]
      > > Hi,
      > >
      > > I was wondering if it is possible calling an ASP page automatically
      > > at a certain time. Kind of how a job is scheduled in SQL Server.
      > >[/color]
      > http://www.aspfaq.com/show.asp?id=2143
      >
      > Bob Barrows
      > --
      > Microsoft MVP -- ASP/ASP.NET
      > Please reply to the newsgroup. The email account listed in my From
      > header is my spam trap, so I don't check it very often. You will get a
      > quicker response by posting to the newsgroup.
      >
      >[/color]


      Comment

      • Bob Barrows [MVP]

        #4
        Re: Trigger ASP page

        You should ask this in one of the .scripting newsgroups. I'm not sure how
        you would do this in a vbs file. I'm sure one of the scripting experts will
        know.

        Shahid Juma wrote:[color=blue]
        > hi,
        >
        > I have a vbs script that I have scheduled in the task manager to
        > execute at a certain time. However, in this script I had a call to a
        > JScript function but when I include and run the task, I get an error.
        >
        > How do I include this in the vbs file?
        >
        > ------
        > function GetUnixTime(str Date) {
        > if (strDate) {
        > return new Date(strDate).v alueOf();
        > }
        > else {
        > return 0;
        > }
        > }
        > -------
        >
        > Thanks,
        > Shahid
        >
        >
        > "Bob Barrows [MVP]" <reb01501@NOyah oo.SPAMcom> wrote in message
        > news:OQrllpowEH A.3528@tk2msftn gp13.phx.gbl...[color=green]
        >> Shahid Juma wrote:[color=darkred]
        >>> Hi,
        >>>
        >>> I was wondering if it is possible calling an ASP page automatically
        >>> at a certain time. Kind of how a job is scheduled in SQL Server.
        >>>[/color]
        >> http://www.aspfaq.com/show.asp?id=2143
        >>
        >> Bob Barrows
        >> --
        >> Microsoft MVP -- ASP/ASP.NET
        >> Please reply to the newsgroup. The email account listed in my From
        >> header is my spam trap, so I don't check it very often. You will get
        >> a quicker response by posting to the newsgroup.[/color][/color]

        --
        Microsoft MVP -- ASP/ASP.NET
        Please reply to the newsgroup. The email account listed in my From
        header is my spam trap, so I don't check it very often. You will get a
        quicker response by posting to the newsgroup.


        Comment

        • Guest's Avatar

          #5
          Re: Trigger ASP page

          Error?

          "Shahid Juma" <shahid319REMOV ETHIS@hotmail.c om> wrote in message
          news:u5IkAwOyEH A.3096@tk2msftn gp13.phx.gbl...[color=blue]
          > hi,
          >
          > I have a vbs script that I have scheduled in the task manager to execute[/color]
          at[color=blue]
          > a certain time. However, in this script I had a call to a JScript function
          > but when I include and run the task, I get an error.
          >
          > How do I include this in the vbs file?
          >
          > ------
          > function GetUnixTime(str Date) {
          > if (strDate) {
          > return new Date(strDate).v alueOf();
          > }
          > else {
          > return 0;
          > }
          > }
          > -------
          >
          > Thanks,
          > Shahid
          >
          >
          > "Bob Barrows [MVP]" <reb01501@NOyah oo.SPAMcom> wrote in message
          > news:OQrllpowEH A.3528@tk2msftn gp13.phx.gbl...[color=green]
          > > Shahid Juma wrote:[color=darkred]
          > > > Hi,
          > > >
          > > > I was wondering if it is possible calling an ASP page automatically
          > > > at a certain time. Kind of how a job is scheduled in SQL Server.
          > > >[/color]
          > > http://www.aspfaq.com/show.asp?id=2143
          > >
          > > Bob Barrows
          > > --
          > > Microsoft MVP -- ASP/ASP.NET
          > > Please reply to the newsgroup. The email account listed in my From
          > > header is my spam trap, so I don't check it very often. You will get a
          > > quicker response by posting to the newsgroup.
          > >
          > >[/color]
          >
          >[/color]


          Comment

          Working...