Hi Borg,
All I see is this:
'If the user has not logged in (guest user ID = 2) then show them a quick login form
If lngLoggedInUserID = 2 Then
Response.Write(vbCrLf & " <td align=""right"" class=""smText""><form method=""post"" name=""frmLogin"" action=""login_user.asp"">")
If blnLongSecurityCode Then Response.Write(strTxtLogin) Else Response.Write(strTxtQuickLogin)
Response.Write(" " & _
vbCrLf & " <input type=""text"" size=""10"" name=""name"" class=""smText"" />" & _
vbCrLf & " <input type=""password"" size=""10"" name=""password"" class=""smText"" />" & _
vbCrLf & " <input type=""hidden"" name=""QUIK"" value=""true"" />")
If blnLongSecurityCode = false Then Response.Write(vbCrLf & " <input type=""hidden"" name=""sessionID"" value=""" & Session.SessionID & """ />")
Response.Write(vbCrLf & " <input type=""submit"" value=""" & strTxtGo & """ class=""smText"">" & _
vbCrLf & " </form></td>")
End If
I can't seem to find what to change. If I change QUIK to false, it only seems to effect this in login_user.asp:
'If not quick login empty variables
If Request.Form("QUIK") OR blnSecurityCodeOK = false Then
strUsername = Replace(strUsername, "''", "'")
strPassword = Replace(strPassword, "''", "'")
Else
strUsername = ""
strPassword = ""
End If
I'm not sure what that does, but it doesn't look like it has anything to do with anonymous users.
I can't seem to find the variable you are talking about to change that makes quick login users visible instead of anonymous.
I'm not an asp programmer, so it's probably right in front of my face.