Question
ASP VBScript , Remote_User server variable, and Access DB
I need to recreate some ASP pages that were orginally created in MS FrontPage once upon a time.
I have a table in an Access DB that contains the user's login ID. I need to pull the date the user completed a quiz at the end of a web training module.
My connection looks OK, b/c I can pull other info. I can pull the quiz completion date if I put in my login ID. The login ID is called Email in the DB and the completion date is called Time.
This works:
SELECT [Time]
FROM QuizComplete
WHERE Email = 'OCSP/BUTLER_A' AND QuizID = 109
How do I change the WHERE Email so it filters by the Server Variable Remote_User?
Thanks!
