I have the following code
dim xxx
xxx = Request.ServerVariables("Logon_User"
fp_sQry="SELECT * FROM Results Where User ='" & xxx & "'"
and its not working
fp_sQry="SELECT * FROM Results Where User ='Jim'"
This does work so the value of xxx must not be right
How do I view xxx and what else can I do?
dim xxx
xxx = Request.ServerVariables("Logon_User"
fp_sQry="SELECT * FROM Results Where User ='" & xxx & "'"
and its not working
fp_sQry="SELECT * FROM Results Where User ='Jim'"
This does work so the value of xxx must not be right
How do I view xxx and what else can I do?