i am very new to asp.net. when someone presses a button on default.aspx, this takes a user to default2.aspx by response.direct. there are some local variables on default.aspx that i want to carry over to the next page. i want to know what their values are. for example if someone entered text in a textbox on the default.aspx i would like to know that value on the next page. thank you so much for your time.
Share
You could use Session or Page.PreviousPage.FindControl(“previousPageTextBox”);
IE: