Pass session variable between pages (C#)
<%@ Page language="c#" src="Cookieless1.aspx.cs" AutoEventWireup="false" Inherits="Cookieless1" %>
<%-- Cookieless1.aspx.cs
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
public class Cookieless1 : System.Web.UI.Page
{
protected System.Web.UI.WebControls.HyperLink lnkRedirect;
protected System.Web.UI.WebControls.Button cmdLinkAbsolute;
protected System.Web.UI.WebControls.Button cmdLink;
protected System.Web.UI.WebControls.Label lblInfo;
private void Page_Load(object sender, System.EventArgs e)
{
Session["test"] = "Test String";
}
#region Web Form Designer generated code
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: This call is required by the ASP.NET Web Form Designer.
//
InitializeComponent();
base.OnInit(e);
}
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.cmdLinkAbsolute.Click += new System.EventHandler(this.cmdLinkAbsolute_Click);
this.cmdLink.Click += new System.EventHandler(this.cmdLink_Click);
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
private void cmdLink_Click(object sender, System.EventArgs e)
{
Response.Redirect("Cookieless2.aspx");
}
private void cmdLinkAbsolute_Click(object sender, System.EventArgs e)
{
string url;
url = "http://www.rntsoft.com/Cookieless2.aspx";
Response.Redirect(url);
}
}
--%>
<%-- Cookieless2.aspx
<%@ Page language="c#" src="Cookieless2.aspx.cs" AutoEventWireup="false" Inherits="Cookieless2" %>
--%>
<%--
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
public class Cookieless2 : System.Web.UI.Page
{
protected System.Web.UI.WebControls.Label lblInfo;
private void Page_Load(object sender, System.EventArgs e)
{
if (Session["test"] != null)
{
lblInfo.Text = "Successfully retrieved " + (string)Session["test"];
}
else
{
lblInfo.Text = "Session information not found.";
}
}
#region Web Form Designer generated code
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: This call is required by the ASP.NET Web Form Designer.
//
InitializeComponent();
base.OnInit(e);
}
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
}
--%>