I am getting Following error in my application which is running on Windows Server 2008, IIS7 and SS2008
______ERROR______
error '8002801c' /LM/W3SVC/1/ROOT/FLEETSERVICES/global.asa, line 38
______Which corresponds to below code_______
Sub Session_OnStart
Response.Redirect("/Fleetservices/default.asp?URL=" & Request.Cookies("InfoSys")("URL")) dim dtLastMonth dtLastMonth = DateAdd("m", -1, now)
Session("WorkingDate") = DateSerial(Year(dtLastMonth), Month(dtLastMonth), 1)
End Sub
____I tried____
http://blogs.iis.net/lprete/archive/2009/01/04/session-onend-classic-asp-and-iis-7-0.aspx
appcmd set config /section:system.webServer/asp /runOnEndAnonymously:false but still the error is coming.
__WHAT NOW__ ???