我在页面中使用了两个框架。 Main fame中的页面将获得输入,Top frame必须显示结果页面。

我在大型机页面中使用以下代码。但这表明

错误:“ Microsoft JScript运行时错误:'topFrame'未定义”

码:

  <frame src="" id="topFrame" target="topFrame"  scrolling="no">
  <frame src="txtPage.aspx" target="topFrame" name="mainFrame">

  txtPage(MainFrame)
  Response.Write("<script>topFrame.location.href=\"Homepage.aspx\";</script>");

最佳答案

好的,对于初学者来说(这里没有冒犯),但是车架很烂。您可以尝试使用iFrame吗?

如果您使用iFrame,则可以使用类似

<iframe src="" id="topFrame" target="topFrame"  scrolling="no" runat="server"></iframe>


那么您可以设置iFrame属性

topFrame.Attributes.Add("src", "/homepage.aspx")

关于c# - Response.write和目标框架,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2979262/

10-10 13:47