I’m developing some ASP.NET pages with Dreamweaver MX (DWMX)with an SQL database backend.
I will have a form visitors will fill out (from textboxes) on my web page. I want the information to be held temporarily in session variables (there will be about 20 variables between 4 pages).
Once a user reaches the end and has verified the info is correct then they can push "submit" which will write the info stored in the session variables to the database (just one table).
I understand how to declare a session variable with DWMX.
How do I assign the information from the textboxes to the session variables each time the user presses the "next step" button?
Finally, how do I write all the information collected from those session variables to the SQL database when the user clicks the "submit" button?
Thanks in advance for anyone's reply.
I will have a form visitors will fill out (from textboxes) on my web page. I want the information to be held temporarily in session variables (there will be about 20 variables between 4 pages).
Once a user reaches the end and has verified the info is correct then they can push "submit" which will write the info stored in the session variables to the database (just one table).
I understand how to declare a session variable with DWMX.
How do I assign the information from the textboxes to the session variables each time the user presses the "next step" button?
Finally, how do I write all the information collected from those session variables to the SQL database when the user clicks the "submit" button?
Thanks in advance for anyone's reply.