Session Variables

Hello,

The code that makes your name show up is the result of two lines of scripting. The first line retrieves the FirstName form element from the previous page, the second line displays the session variable.

<% session("FirstName")=Request.Form("FirstName") %>
Hello, <%=session("FirstName")%>

Continue with Session Variables

Home - What Is ASP - Simple Scripts - Using Forms - Form Elements - Form Processing - Session Variables - IF THEN ELSE