I'm passing the value to the next page using server.execute, but I'm unable to get that value into next page.
//this is WebForm1.aspx.cs
protected void Button1_Click(object sender, EventArgs e)
{
Server.Execute("WebForm2.aspx");
}
//this is WebForm2.aspx.cs
protected void Page_Load(object sender, EventArgs e)
{
Label1.Text = //what method should i use to get the vale from WebForm1.aspx.cs
}