请问如何从一个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>");
还是没有用啊
展开
 我来答
没失恋过不懂爱情
2007-08-08 · TA获得超过166个赞
知道小有建树答主
回答量:112
采纳率:0%
帮助的人:101万
展开全部
直接用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页。
MS_Frank
2007-08-07 · TA获得超过467个赞
知道小有建树答主
回答量:775
采纳率:0%
帮助的人:507万
展开全部
设置它的target属性等于须要在其中打开的框架的名字或ID就可以了.
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式