Hi All,
I have an urgent problem on changing the source of iframe from another page. I supplied bellow a detailed description of the problem. I hope it will be helpful.
1. I have the following frameset:
<frameset rows="30,*" >
<frame name="menu" src="Menu.aspx">
<frame name="content" src="Content.aspx">
</frameset>
2. The "menu" frame contains global menu, with 'Add' and 'Delete' items. When clicking on the 'Add' item, a page is open in the "content" frame (let's call this page HasIframe.aspx).
3. The 'HasIframe.aspx' page has iframe:
<iframe id=frame1 name="myFrame" runat="server" onload="onFrameLoad1">
The onload event handler defines the src of the iframe in the codebehind.
4. When again clicking on the 'Add' item in the "me ...
Go to the complete details ...