Sessions ASP.Net Tutorial

<%@ Page Language="C#" %>

   void Submit_Click(Object Sender, EventArgs e) {
      if (tbPass.Value == "mypass") {
         Session["UserName"] = tbUser.Value;
         Response.Redirect("NextPage.aspx");
      } else {
         Label1.Text = "That " + "is the wrong password!";
      }
   }



   
      Please enter your username and password:
      

      
      
      
      
   


File: NextPage.aspx
<%@ Page Language="VB" %>

   sub Page_Load(Sender as Object, e as EventArgs)
      if not Page.IsPostBack then
         Label1.Text = "Welcome " & Session("Username") & _
            "!"
         
         Label1.Text = Label1.Text & "The current time is: " & _
            DateTime.Now.ToString("T") & ""
      
         Label1.Text = Label1.Text & "Your session id is: " & _
            Session.SessionID & ""
      end if
   end sub
   
   sub Submit_Click(obj as object, e as eventargs)
      Session.Abandon
      Label1.Text = "Your session has ended."
      btSubmit.Visible = false
   end sub


   
      
      
               text="Submit"
         runat="server"
         OnClick="Submit_Click" />