[Solved] How to transfer data from one page to another page in asp.net, I dont want to use sessions


You can use Query String & Cookies

Example for Query String :

Passing value..

private void Button1_Click(object sender, System.EventArgs e)
{
// Value sent using HttpResponse
Response.Redirect("Form1.aspx?Name="+txtName.Text);
}

Getting value using Query String..

 if (Request.QueryString["Name"]!= null) // null checking
 lbl_Name.Text = Request.QueryString["Name"]; 

3

solved How to transfer data from one page to another page in asp.net, I dont want to use sessions