Forum Moderators: open
I using visual studio .net to create a ASP.NET application.
I have a webform that opens a html page via window.open('loancalculator.html');
When users press the calculate button on the child window (loancalculator.html) the page updates the value on a text control on the parent webform.aspx via window.opener.control.value = newvalue
All the above seem to work. On my webform I have other webcontrols which values are dependent of this control I just changed. But their value dont changed.
Basically IE dont consider window.opener.control.value = newvalue good enough to call my onChange() method on that control.
I need to manually force a PostBack on the webform.]
Any suggestions?
Thanks a lot