G
Guest
I'm trying to submit an iframe from the parent window using javascript. It
works correctly the first time but after that the submit doesn't work.
I call the javascript code {parent.framename.document.forms[0].submit();}
when I click the button on the parent.
On the first click of the button I get the following events.
LoadViewState();
Page_Load Page.IsPostBack
SubmitClicked ---- The event I'm looking for.
Page_Load !Page.IsPostBack
On any subsequent clicks of the button, I get the following event.
Page_Load !Page.IsPostBack
if I put an alert() in the javascript function(), it works every time.
Anybody have any ideas?
works correctly the first time but after that the submit doesn't work.
I call the javascript code {parent.framename.document.forms[0].submit();}
when I click the button on the parent.
On the first click of the button I get the following events.
LoadViewState();
Page_Load Page.IsPostBack
SubmitClicked ---- The event I'm looking for.
Page_Load !Page.IsPostBack
On any subsequent clicks of the button, I get the following event.
Page_Load !Page.IsPostBack
if I put an alert() in the javascript function(), it works every time.
Anybody have any ideas?