iframe scrolling 设置为no但是放在母页面最下面一部分被遮挡住了
<table style=" width:100%; height:100%;">
<tr style=" width:100%; height:100%;">
<td style=" width:100%; height:100%;">
<iframe id="frmContent" allowtransparency="true" runat="server" scrolling="no" style="width:100%;height:100%; position:relative; z-index:999; margin-top:0px;" frameborder="0"/>
<img src="images.png" alt="" style="width:300px;height:70px;position:fixed;bottom:0px;z-index:997; right:0px;"/>
</td>
</tr>
<tr>
<td align="right" style="padding-top: 8px; padding-right:15px; width:100%">
<input id="btnEdit" type="button" value="Edit" runat="server" class="btn_black" onclick="Show()"
style="width: 80px; height: 25px; " />
</td>
</tr>
</table>
子页面
<form id="form1" runat="server" style="overflow:scroll;">
<asp:ScriptManager ID="ScriptManagerUser" EnablePageMethods="true" runat="server" />
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<table width="100%" border="0" style="margin-top:-3px; overflow:scroll;">
</table>
</ContentTemplate>
</asp:UpdatePanel >
iframe scrolling 设置为no,为了防止外滚动条的出现,在子页面的时候滚动条处于不可用状态,原因是因为子页面的实际高可以容下全部控件,但是放在母页面最下面一部分被遮挡住了,无法显示。请问如何解决。
iframe高度自适应