Hi Everyone
I have two aspx pages that updates two values in a database.
I have an update button called Button1.
Button1 in the first page redirects to the second aspx page.
On the second page i want to select a value and then redirect to the first page.
How do i then get the value that is returned from the second Page? and the use it in Button1's method?
Response.Redirect("Pagetwo.aspx");
Label1.Text = Request.QueryString["sp"];