我有一个.aspx页面,其中包含一个内部带有按钮的外部域的iframe,称之为PAGE_W
。
单击按钮后,与内部按钮对应的服务器端转发到另一个域,将其称为PAGE_X
。
我的问题是,在点击按钮后,iframe仍然存在且位于PAGE_X
内。
我无法更改有关PAGE_W
的任何内容,但我可以将PAGE_W
转发的域名更改为PAGE_X
。
包含iframe的页面:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="SomeTest.aspx.cs" Inherits="Firmware_IframeTest" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div style="padding-top: 10px;">
<iframe id="IframeTest" width="700" height="700" src="<%=this.Page_W%>" frameborder="0"></iframe>
</div>
</form>
</body>
</html>
如何转发到PAGE_X
但是还要突破iframe?