从ASP.NET的web1子界面刷新打开web1的web0父界面

单击web0界面的按钮bt1触发一下代码:

protected void btnSave_Click(object sender, EventArgs e)
{
string parentJs = @"<script>opener.location.reload();</script>";
ClientScript.RegisterStartupScript(this.GetType(), "clientScript", parentJs);
}

即可刷新web0。前提是web0打开web1的方式如下:

public void btOpenWeb1(object sender,eventargs e)
{
Response.Write("<script type='text/javascript'>window.open('web1.aspx','newwindow', 'height=500, width=750, top=50,left=300, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no')</script>");
}
上一篇:[转载] Can't create table './store/#sql-b2c_1a.frm' (errno: 150)和sql execution error #1452添加外键时错误解决方法


下一篇:WinForm------TextEdit只能输入数字