朋友我有一个父页面(default.aspx),其中包括一个 iframe 页面(iframe.aspx),该页面包含字段中的文本框。父页面包含“保存”按钮。现在我想在提交父页面时获取 iframe 页面的值。如何访问父页面提交中的 iframe 页面字段?
iframe.aspx 页面,,,, 在 iframe 页面中我有两个文本框,,
<asp:textbox id="txtfromdate" runat="server"></asp:textbox>
<asp:textbox id="txttodate" runat="server"></asp:textbox>
default.aspx 页面
<iframe id="iframebody" runat="server" src="iframe.aspx" style="width:900px; height:600px"></iframe>
<asp:button id="submit" text="save" runat="server" />
当我单击按钮时,frdz 如何在父页面(default.aspx)中访问 iframe 页面 id(txtfromdate,txtTodate)?