I want to store a value that I enter in a textfield in a session variable to use on another page without submitting the value to a data table.
I tried:
<% Session(“firstn ame”)= Request.Form(“F irst”) %>
I also tried:
<% Session(“firstn ame”)= First.Text %>
Neither worked but
<% Session(“firstn ame”)= "John" %>
does work and the value is available on subsequent page.
Please help,
Peter A
I tried:
<% Session(“firstn ame”)= Request.Form(“F irst”) %>
I also tried:
<% Session(“firstn ame”)= First.Text %>
Neither worked but
<% Session(“firstn ame”)= "John" %>
does work and the value is available on subsequent page.
Please help,
Peter A
Comment