Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
All-Star
32487 Points
6742 Posts
May 21, 2009 11:16 AM|LINK
demoninside9 should i use query string, if yes then how can u explain a bit
there are no.of way to pass a value from page to another page
http://dotnetslackers.com/Community/blogs/haissam/archive/2007/11/26/ways-to-pass-data-between-webforms.aspx
Write the code on Button_click event of page1.aspx Response.Redirect("page2.aspx?name=" + textbox1.text ,False); on page2.aspx Page_Load() Textbox1.Text= Request.QueryString["name"].ToString();
venkatu2005
All-Star
32487 Points
6742 Posts
Re: How to move value from one form to another
May 21, 2009 11:16 AM|LINK
there are no.of way to pass a value from page to another page
http://dotnetslackers.com/Community/blogs/haissam/archive/2007/11/26/ways-to-pass-data-between-webforms.aspx
Write the code on Button_click event of page1.aspx Response.Redirect("page2.aspx?name=" + textbox1.text ,False); on page2.aspx Page_Load() Textbox1.Text= Request.QueryString["name"].ToString();Thanks.