How can i transfer a text box value to another .aspx pages

Recommended Answers

All 2 Replies

you have many options to do so depend on what suites you

Session : Session["Values"] = TextBox1.Text; QueryString : Response.Redirect("page.aspx?text=" + TextBox1.Text); CrossPage Postback :
Page.PreviousePage....

Cookies.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.