Re: BUG: Session Expired Error

  •  03-13-2012, 2:53 PM

    Re: BUG: Session Expired Error

    Hi RyGa160  ,
     
    Try add the code below into your page. it will activate the session every 6 seconds.
      
    empty.asp can be a empty test page.
     
    function ActivateSession()
    {
        document.body.style.backgroundImage="url(empty.asp?_temp"+new Date()+")"
    }
    setInterval(ActivateSession,60000)
     
     
    Regards,
     
    ken
     
View Complete Thread