Parent Page Refresh without losing values

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a parent page that has some form fields. The user can click a link on this page and open a child pop-up window to add a value. Once submitted, the child window is closed and the parent needs to be refreshed to update the value just entered. However, I do not want to lose the values already inputted into the form

Is there an easier way to keep their values without having to grab each value explicityly and put it in the querystring, then grab it back and repopulate when the page refreshes? My pages are asp.net pages in C#.
 
If you are collecting the exact value you want displayed on the parent, you
can just use JavaScript and populate that item without making a server round
trip at all.
 
Back
Top