O.k...
Hi All,
I don't hold much hope for this, but I have nothing to lose in asking, so here goes....
I'm running this code at my first host which is a windows iis6 host.
This works as expected, but when I take that same code to my second host which is running iis7 it's a different story.
Sometimes people see "text" but other people testing the same page see a blank page.
This means my Application objects at that server are unreliable and don't work for all users like it does in iis6.
(the application pooling time-out delay isn't clearing it)
Can anyone understand why or give me any advice on things to try for solving the problem.. will changing ASP.NET versions do anything ?.. does that have any affect on classic ASP ?
ANYTHING! at all would be good to try at this point, THANKS!
Hi All,
I don't hold much hope for this, but I have nothing to lose in asking, so here goes....
I'm running this code at my first host which is a windows iis6 host.
Code:
<%
'used to set a value to the application (one off using test.asp?set=123)
If Len(Request.QueryString("set")) > 0 Then
application("test") = "text"
Else
'for all other users display the value (test.asp)
Response.write(application("test"))
End If
%>
This works as expected, but when I take that same code to my second host which is running iis7 it's a different story.
Sometimes people see "text" but other people testing the same page see a blank page.
This means my Application objects at that server are unreliable and don't work for all users like it does in iis6.
(the application pooling time-out delay isn't clearing it)
Can anyone understand why or give me any advice on things to try for solving the problem.. will changing ASP.NET versions do anything ?.. does that have any affect on classic ASP ?
ANYTHING! at all would be good to try at this point, THANKS!