Autorefresh ASP page help!!

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

    Autorefresh ASP page help!!

    Hi, I have this problem:
    In my intranet I use a hidden frame that autorefresh every 30 seconds.
    That page records a hit into SQL Server thats indicates to me the user
    still on-line.
    I use this:
    <META HTTP-EQUIV="Refresh" CONTENT="30">

    Now I use this:

    var limit="0:30"

    if (document.image s){
    var parselimit=limi t.split(":")
    parselimit=pars elimit[0]*60+parselimit[1]*1
    }
    function beginrefresh(){
    if (!document.imag es)
    return
    if (parselimit==1)
    window.location .reload()
    else{
    parselimit-=1
    curmin=Math.flo or(parselimit/60)
    cursec=parselim it%60
    setTimeout("beg inrefresh()",10 00)
    }
    }

    I fond all this stuff in google. It's works perfect for me and a lot
    of users, buy I have problems with others that tells me that they are
    not on-line but they have the intranet open, if they press F5 they
    apear on-line inmediatly. They acces to the intranet throw a proxy
    server. All of they have IE 5.5 or better.
    I really don't know what else can do.
    Any help????

    TANKS!!!!!!!!

    P.D.: Sorry abouy mu english
  • fabianse

    #2
    Re: Autorefresh ASP page help!!

    use a flash object in the page to communicate the online state to your
    central server for every 1 minute.

    hope this help

    Comment

    • Ariel

      #3
      Re: Autorefresh ASP page help!!

      I need somethin easyer....

      Tanks anyway!!!


      fabianse@hotmai l.com (fabianse) wrote in message news:<b5ecfad8. 0402260826.58f9 88c4@posting.go ogle.com>...[color=blue]
      > use a flash object in the page to communicate the online state to your
      > central server for every 1 minute.
      >
      > hope this help[/color]

      Comment

      Working...