Re: Session Timeout Errors

  •  05-29-2011, 9:29 PM

    Re: Session Timeout Errors

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