This topic is locked

Write session variable to table

9/24/2004 2:22:20 AM
ASPRunnerPro General questions
author

Hi,
I want to write the employee name to a table for the employee because they keep messing up their name spelling.
I have a form that they have to fill out after a trade show that they choose date of event, location, employee (they fill out because employer doesn't want a long select list), over all comments, great ideas for management.
They do login and I save their username, password and employeeID and use them to verifiy access to areas in the website.
Thanks,

Bandit <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=question&id=833&image=1&table=forumtopics' class='bbc_emoticon' alt=':rolleyes:' />

V
visual 9/26/2004

If you can retrieve the user name from your table then store it in a session variable, i.e.
Session("LogInName") = ProcessLargeText(GetData(rs.Fields("YourLogInName"), "HTML"))
Then in the formatting dialog box, use a hidden field and fill the default value, i.e.
Session("LogInName")
hope this help you further
Erich