i want to do
1. fill some data in textboxs.
2. save it
3. open a webpage in Webbrowser control.
3. fill data with saved data.
i don't want to use database for saving data because there only one row want to save.
open form, change data, save it, and use it on webbrowser for data fill.
What method i use to save data.
Loading
Posted Jun 19, 2012, 10:59 AM
1) Session [Across / multiple pages]
2) ViewState [In the same page]
You can create a datatable, store/create the records and assign it into viewstate / session.
You the values from Session/viewstate on other pages.