G
Guest
I have the user selecting a record on one page of the web app I'm working on.
After they select a record, I save the record into a session variable and
submit the main page (in another window). In the main page I then set some
edit boxes to the values contained in the record.
The only problem with this scenario is that the data is not being saved in
the edit boxes during the postback. Here's the javascript code I'm using to
submit the main form:
window.opener.document.forms["Form1"].submit();
window.close();
I was wondering if anyone would be able to offer any suggestions about this
problem.
Thanks!
After they select a record, I save the record into a session variable and
submit the main page (in another window). In the main page I then set some
edit boxes to the values contained in the record.
The only problem with this scenario is that the data is not being saved in
the edit boxes during the postback. Here's the javascript code I'm using to
submit the main form:
window.opener.document.forms["Form1"].submit();
window.close();
I was wondering if anyone would be able to offer any suggestions about this
problem.
Thanks!