I'm trying to get a variable to get the value from a textbox created in Dreamweaver that has already been defined and called username.
<% session("varuser") = Request.Form("username") %>
This is what I'm using to get the value from the textbox. I'm using vbscript. It doesn't seem to be getting the value from the texbox and then sending it to the next page because on the next page when I try to call up the variable nothing appears on the page.
<%= request("varuser") %>
This is what I'm using to display the variable's value.
<% session("varuser") = Request.Form("username") %>
This is what I'm using to get the value from the textbox. I'm using vbscript. It doesn't seem to be getting the value from the texbox and then sending it to the next page because on the next page when I try to call up the variable nothing appears on the page.
<%= request("varuser") %>
This is what I'm using to display the variable's value.