当前位置: 代码迷 >> ASP.NET >> 模态窗口只能加载一次吗?解决思路
  详细解决方案

模态窗口只能加载一次吗?解决思路

热度:2601   发布时间:2013-02-25 00:00:00.0
模态窗口只能加载一次吗?
我刚才刚做了个用户修改密码的模态窗口~第一次加载有的~关闭当前模态窗口后~在进入发现不会加载了~!
怎么会事,问题稍基础,见笑了~!

------解决方案--------------------------------------------------------
页面代码
------解决方案--------------------------------------------------------
Response.Write(" <script>window.dialogArguments.window.location = window.dialogArguments.window.location; </script>"); 
Response.Write(" <script>window.close(); </script>"); 
==
Page.ClientScript.RegisterStartupScript(this.GetType(), "", "<script type='text/JavaScript'>window.dialogArguments.window.location = window.dialogArguments.window.location;window.close(); </script>");

------解决方案--------------------------------------------------------
你的代码详细点
  相关解决方案