I doing with sessions. On first page I have code
Response.Redirect("welcome.aspx");
Session["me"] = TextBox1.Text;
and on welcome page I am writing this code on form load event
if(Session["me"] != null)
{
Label1.Text = (string)Session["me"];
}
else
{
Label1.Text = "session not created";
}
it gives me "Session not created" else part is running always. Is something wrong with my code. please help me.