M
Mike
Hi,
I need help writing a script that checks to see how long an asp application has been active on the server. The basic logic is - If the timer and application exceed 60 minutes then refresh the application and start over.
The reasoning behind this is that I am pulling in a header navigation using the following.
Set objHTTP = Server.CreateObject("Microsoft.XMLHTTP")
objHTTP.Open "GET", "header navigation reference here", false
objHTTP.Send
Response.Write objHTTP.ResponseText
So far here is what I have:
Sub Application_OnStart
Dim objHTTP
Set objHTTP = Server.CreateObject("Microsoft.XMLHTTP")
objHTTP.Open "GET", "https://www.getlower.com/cobrand_cic.aspx", false
objHTTP.Send
Response.Write objHTTP.ResponseText
End Sub
Thanks for any input you may have.
Mike
I need help writing a script that checks to see how long an asp application has been active on the server. The basic logic is - If the timer and application exceed 60 minutes then refresh the application and start over.
The reasoning behind this is that I am pulling in a header navigation using the following.
Set objHTTP = Server.CreateObject("Microsoft.XMLHTTP")
objHTTP.Open "GET", "header navigation reference here", false
objHTTP.Send
Response.Write objHTTP.ResponseText
So far here is what I have:
Sub Application_OnStart
Dim objHTTP
Set objHTTP = Server.CreateObject("Microsoft.XMLHTTP")
objHTTP.Open "GET", "https://www.getlower.com/cobrand_cic.aspx", false
objHTTP.Send
Response.Write objHTTP.ResponseText
End Sub
Thanks for any input you may have.
Mike