日期:2014-05-18  浏览次数:20420 次

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

------解决方案--------------------
页面代码
------解决方案--------------------
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>");

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