b.aspx页怎样用<asp:bttton>按钮关闭,关闭时怎样刷新a.aspx
9 个解决方案
#1
window.opener.location = window.opener.location在b页面中用这个来刷新a页面
window.opener = null;
window.close();//关闭当前窗口
window.opener = null;
window.close();//关闭当前窗口
#2
b.aspx页怎样用 <asp:bttton>按钮关闭,关闭时怎样刷新a.aspx ??
是AddAlbum.aspx页怎样用 <asp:bttton>按钮关闭,关闭时怎样刷新a.aspx 么?
是AddAlbum.aspx页怎样用 <asp:bttton>按钮关闭,关闭时怎样刷新a.aspx 么?
#3
window.opener.location.reload()//刷新
window.close()//关闭
window.close()//关闭
#4
是的 请回答详细点 我是菜鸟
#5
<asp:Button ID='btn' runat="server"
OnClientClick="javascript:window.opener.location=window.opener.location;window.opener=null;
window.close();" />
记得不要用
window.opener.location.reload()//刷新
来刷新父页面
#6
a.aspx用 <a href="" onclick="window.open('AddAlbum.aspx','','toolbar=0,menubar=0,width=400,height=400')">创建 </a>弹出'AddAlbum.aspx'
还要用户输入东西,插入到数据库中
在button的Click事件中应怎么写,能完成插入数据库又能关闭当前页,然后刷新a.aspx(要连接数据库获得而'AddAlbum.aspx'用户刚输入的数据)
还要用户输入东西,插入到数据库中
在button的Click事件中应怎么写,能完成插入数据库又能关闭当前页,然后刷新a.aspx(要连接数据库获得而'AddAlbum.aspx'用户刚输入的数据)
#7
button事件中:
//插入数据库操作
....
Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "js", "<script>alert('插入成功');window.opener.location = window.opener.location;window.opener=null;window.close();</script>");
//插入数据库操作
....
Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "js", "<script>alert('插入成功');window.opener.location = window.opener.location;window.opener=null;window.close();</script>");
#8
学习了
#9
非常感谢
#1
window.opener.location = window.opener.location在b页面中用这个来刷新a页面
window.opener = null;
window.close();//关闭当前窗口
window.opener = null;
window.close();//关闭当前窗口
#2
b.aspx页怎样用 <asp:bttton>按钮关闭,关闭时怎样刷新a.aspx ??
是AddAlbum.aspx页怎样用 <asp:bttton>按钮关闭,关闭时怎样刷新a.aspx 么?
是AddAlbum.aspx页怎样用 <asp:bttton>按钮关闭,关闭时怎样刷新a.aspx 么?
#3
window.opener.location.reload()//刷新
window.close()//关闭
window.close()//关闭
#4
是的 请回答详细点 我是菜鸟
#5
<asp:Button ID='btn' runat="server"
OnClientClick="javascript:window.opener.location=window.opener.location;window.opener=null;
window.close();" />
记得不要用
window.opener.location.reload()//刷新
来刷新父页面
#6
a.aspx用 <a href="" onclick="window.open('AddAlbum.aspx','','toolbar=0,menubar=0,width=400,height=400')">创建 </a>弹出'AddAlbum.aspx'
还要用户输入东西,插入到数据库中
在button的Click事件中应怎么写,能完成插入数据库又能关闭当前页,然后刷新a.aspx(要连接数据库获得而'AddAlbum.aspx'用户刚输入的数据)
还要用户输入东西,插入到数据库中
在button的Click事件中应怎么写,能完成插入数据库又能关闭当前页,然后刷新a.aspx(要连接数据库获得而'AddAlbum.aspx'用户刚输入的数据)
#7
button事件中:
//插入数据库操作
....
Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "js", "<script>alert('插入成功');window.opener.location = window.opener.location;window.opener=null;window.close();</script>");
//插入数据库操作
....
Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "js", "<script>alert('插入成功');window.opener.location = window.opener.location;window.opener=null;window.close();</script>");
#8
学习了
#9
非常感谢