T
Timo
I created this application using ASP.NET 1.0 and it has worked great
for several years. I recently upgraded to 2.0 and now this isn't
working:
I have a popup window that indicates to the user a problem. They have
several choices, in all of them I change the value of items on the
opener window like so:
window.opener.document.getElementById('txtFunctionError').value='Confirm';
window.opener.document.Form1.submit();
window.opener.focus();
window.close();
In debuging the application I can SEE that the form value has been
changed to "Confirm" however in the postback code behind where I do a
Request.Form("txtFunctionError") the value is not changing.
What is the deal with that?
Like I said, this had been working perfectly for several years and now
all of a sudden it doesn't. The Version of IE hasn't changed, it just
seems that the Code cannot retrieve the form items current value, the
value remains what it was before the popup, yet I can see that the
value was changed on the web page.
for several years. I recently upgraded to 2.0 and now this isn't
working:
I have a popup window that indicates to the user a problem. They have
several choices, in all of them I change the value of items on the
opener window like so:
window.opener.document.getElementById('txtFunctionError').value='Confirm';
window.opener.document.Form1.submit();
window.opener.focus();
window.close();
In debuging the application I can SEE that the form value has been
changed to "Confirm" however in the postback code behind where I do a
Request.Form("txtFunctionError") the value is not changing.
What is the deal with that?
Like I said, this had been working perfectly for several years and now
all of a sudden it doesn't. The Version of IE hasn't changed, it just
seems that the Code cannot retrieve the form items current value, the
value remains what it was before the popup, yet I can see that the
value was changed on the web page.