Response.write和目标帧

发布于 2024-09-04 12:02:08 字数 416 浏览 7 评论 0原文

我在页面中使用两个框架。主框架中的页面将获取输入,顶部框架必须显示结果页面。

我在主机页面中使用以下代码。但它显示

错误:“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>");

I am using two frames in my page. The page in Main fame will get the input and Top frame has to display the result page.

I am using the following code in the mainframe page. But it shows

error:"Microsoft JScript runtime error: 'topFrame' is undefined"

Code:

  <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>");

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

著墨染雨君画夕 2024-09-11 12:02:08

好吧,对于初学者来说(无意冒犯),但是框架很糟糕。您可以尝试使用 iFrame 吗?

如果你使用 iFrame,那么你可以有一个像这样的标签,

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

然后你可以设置 iFrame 属性

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

ok, for starters (and no offence here), but frames suck. Could you try using iFrames?

If you use an iFrame, then you can have a tag like

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

then you can set the iFrame attribute

topFrame.Attributes.Add("src", "/homepage.aspx")
美胚控场 2024-09-11 12:02:08

尝试window.topFrame.location.hrefparent.topFrame.location.href

Try window.topFrame.location.href or parent.topFrame.location.href.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文