页面中有个ifrmae,在page_load时设置src。浏览时,在iframe中找不到此页,但是此页在IE中确实够能打开。请各位高手看看是什么问题,代码如下:
<form id="Form1" method="post" runat="server">
<iframe id="IFrmPage" name="IFrmPage" width="800" frameborder=no height="600" runat="server"></iframe>
</form>Code:
if (strPage!= null && strPage.Length != 0)
{
this.IFrmPage.Attributes["src"] = strPage;
}