I found this code snippet
that returns all of the Response key values. But I don't know which one to use to determine if the user has admin rights. Help!!Code:<%@ Language=VBScript %> <% For Each Key in Request.ServerVariables With Response .Write Key & " - " & Request.ServerVariables(key) .Write "<br><br>" '& vbCrLf End With Next %>




Reply With Quote