请问如何从一个iframe中的按钮去开另外一个iframe的页面
我的页面中有2个iframe.其中一个iframe(iframe1)中的一个LinkButton需要到另外一个iframe中开一个网页:protectedvoidMain...
我的页面中有2个iframe.
其中一个iframe(iframe1)中的一个LinkButton需要到另外一个iframe中开一个网页:
protected void MainListCourseNameLinkButton_Click(object sender, EventArgs e)
{
GridViewRow gvr = (GridViewRow)((LinkButton)sender).Parent.Parent;
Session["CourseID"] = MainListGridView.DataKeys[gvr.RowIndex].Values[0];
//Response.Write("window.getElementById.Introduce.location = \"Introduce.aspx\";");
//Response.Write("javascript:window.iframe的名字.location = \"Introduce.aspx\";");
//Response.Redirect("Introduce.aspx?CourseID=" + MainListGridView.DataKeys[gvr.RowIndex].Values[0] );
//document.frames("Introduce").location.reload();
//Response.Write("Introduce.window.location.reload()");
//Response.Write("javascript:parent.Introduce.location.reload(true);");
}
这是我写的代码,C#,注释掉的都是要不得的,请高手来帮忙看看,感激不尽
要达到的目的是在另外一个iframe(iframe2)中调用一个新页面.
直接在后台写:
Page.RegisterClientScriptBlock("js", "<script>parent.frames('Iframe2').location.href='aaaa.aspx';</script>");
还是没有用啊 展开
其中一个iframe(iframe1)中的一个LinkButton需要到另外一个iframe中开一个网页:
protected void MainListCourseNameLinkButton_Click(object sender, EventArgs e)
{
GridViewRow gvr = (GridViewRow)((LinkButton)sender).Parent.Parent;
Session["CourseID"] = MainListGridView.DataKeys[gvr.RowIndex].Values[0];
//Response.Write("window.getElementById.Introduce.location = \"Introduce.aspx\";");
//Response.Write("javascript:window.iframe的名字.location = \"Introduce.aspx\";");
//Response.Redirect("Introduce.aspx?CourseID=" + MainListGridView.DataKeys[gvr.RowIndex].Values[0] );
//document.frames("Introduce").location.reload();
//Response.Write("Introduce.window.location.reload()");
//Response.Write("javascript:parent.Introduce.location.reload(true);");
}
这是我写的代码,C#,注释掉的都是要不得的,请高手来帮忙看看,感激不尽
要达到的目的是在另外一个iframe(iframe2)中调用一个新页面.
直接在后台写:
Page.RegisterClientScriptBlock("js", "<script>parent.frames('Iframe2').location.href='aaaa.aspx';</script>");
还是没有用啊 展开
2个回答
展开全部
直接用javascript写:
parent.frames('Iframe2').location.href='aaaa.aspx';
后台
Page.RegisterClientScriptBlock("js", "<script>parent.frames('Iframe2').location.href='aaaa.aspx';</script>");
这段代码是我从我的程序里直接摘出来的,我用的是vs.net2005,应该是好使的。不过这种方式在net2.0中是过期的,你可以试试用ClientScript.RegisterClientScriptBlock方法调用。
下面是我刚刚做的一个测试界面:
-----------------------
default.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<iframe id="if1" src="1.aspx"></iframe>
<iframe id="Iframe1" src=""></iframe>
</form>
</body>
</html>
没有后台
---------------------------------------------
1.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="1.aspx.cs" Inherits="_1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
<input id="Button1" onclick="parent.frames('Iframe1').location.href='aaaa.aspx';" style="position: relative" type="button" value="button" />
<asp:LinkButton ID="LinkButton1" runat="server" OnClick="LinkButton1_Click">LinkButton</asp:LinkButton>
</form>
</body>
</html>
.cs
public partial class _1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void LinkButton1_Click(object sender, EventArgs e)
{
Page.RegisterClientScriptBlock("js", "<script>parent.frames('Iframe1').location.href='aaaa.aspx';</script>");
}
}
--------------------------
两种方式都能在Iframe1中打开aaaa.aspx页。
parent.frames('Iframe2').location.href='aaaa.aspx';
后台
Page.RegisterClientScriptBlock("js", "<script>parent.frames('Iframe2').location.href='aaaa.aspx';</script>");
这段代码是我从我的程序里直接摘出来的,我用的是vs.net2005,应该是好使的。不过这种方式在net2.0中是过期的,你可以试试用ClientScript.RegisterClientScriptBlock方法调用。
下面是我刚刚做的一个测试界面:
-----------------------
default.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<iframe id="if1" src="1.aspx"></iframe>
<iframe id="Iframe1" src=""></iframe>
</form>
</body>
</html>
没有后台
---------------------------------------------
1.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="1.aspx.cs" Inherits="_1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
<input id="Button1" onclick="parent.frames('Iframe1').location.href='aaaa.aspx';" style="position: relative" type="button" value="button" />
<asp:LinkButton ID="LinkButton1" runat="server" OnClick="LinkButton1_Click">LinkButton</asp:LinkButton>
</form>
</body>
</html>
.cs
public partial class _1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void LinkButton1_Click(object sender, EventArgs e)
{
Page.RegisterClientScriptBlock("js", "<script>parent.frames('Iframe1').location.href='aaaa.aspx';</script>");
}
}
--------------------------
两种方式都能在Iframe1中打开aaaa.aspx页。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询