Symptoms
1. CAPTCHA tells that entered security incorrect in any case.
2. Registering user with turned off CAPTCHA - forums tells that access is denied and aborts user creation.
3. Script kinda:
<% ' Display the Session.Contents collection.
Response.Write Session.Contents.Count & " items are in Session.Contents collection:<HR>"
Dim sessItem
For Each sessItem In Session.Contents
If IsArray(Session.Contents.Item(sessItem)) Then
Response.write sessItem & " : an array of the following " _
& UBound(Session.Contents.Item(sessItem))+1 & " items <BR>"
For each objArray in Session.Contents.Item(sessItem)
Response.write "- " & objArray & "<BR>"
Next
ElseIf IsObject(Session.Contents.Item(sessItem)) Then
Response.write(sessItem & " : Session object cannot be displayed." & "<BR>")
Else
Response.write(sessItem & " : " & CStr(Session.Contents.Item(sessItem)) & "<BR>")
End If
Next
%>
Tells that: 0 items are in Session.Contents collection:
Situation:
Single server, IIS 6.0, Application pool is loner, session timeout is 20 min. IIS have rights.
MsSQL DB used, 2k3 server
Solution: Up to you. Urgently needed
