ASP.net Bengali tutorial part-2 || Send page values from one page to another page in ASP.net
There are many ways you can transfer your one page values to another page either using (1) Cookies or (2) Using QueryString. In this tutori...

Send Page value using QueryString
This procedure happens on client side but it is slightly different from cookies. Here no data will be stored on client’s machine instead of that page value will be transferred from one page to another.In this tutorial I have used two pages (1) Default.aspx (2) Default2.aspx
Now in Default.aspx page take two textboxes and two labels and one button. The button will function like, when we click the button TextBox1 and TextBox2 values will be transferred to Default2.aspx page.
{
string url;
url = "Default2.aspx?name=" +
TextBox1.Text + "&email=" +
TextBox2.Text;
Response.Redirect(url);
}
Now on Default2.aspx page take two labels and one TextBox as shown in below picture.
{
Label1.Text = Request.QueryString["name"];
Label2.Text = Request.QueryString["email"];
TextBox1.Text = Label2.Text;
}