session variables and form parameters
Hi
I'm new to all this.
I want to use a session variable using data from a form using post.
I can do this using get with the following code
on page 1 <% Session("user") = Request.Form("username" ) %>
and on page2 where I want the name to appear
<% Session("user") = Request.QueryString("username" ) %> and in the body of the page <%= Session("user") %>
What am I doing wrong
|