window.parent.frames["left"].location.reload();
<2>刷新父页
这种情况,主页面,使用了一个框架,左边是一个自定义的菜单,右边是详细信息页面。
默认情况下:
window.parent.location.reload()
如果得到对象页面为空,写入主页面的具体路径
window.parent.location.reload('index.aspx')
在CS文件操作代码,如下:
Response.Write("<script language='javascript'>window.parent.location.reload('index.aspx')</script>");