I’m new to ASP.NET and C# and I want to create simple webapp. How can I exchange data from a form between different webpage? Like for example, I’m inputing a data in a form from my page1.aspx, then I want to go to a different page, like page2.aspx, then I want to click the back link button to go to the page1.aspx but my data is still save in the form.
Thanks.
You can keep the data in the session variable. Session varaible values will remains till the session ends.You can keep the form values in the session variable and use that again when you come back to the page to load the form fields.
http://msdn.microsoft.com/en-us/library/ms972429.aspx