如何刷新父窗口
父页面A修改成功后弹出子窗口B"提示修改成功"
关闭当前子窗口B时,如何刷新父窗口
我使用Response.Write("<script>alert('修改成功');window.opener.location.href=window.opener.location.href</script>");后还是不刷新
------解决方案--------------------Response.Write(" <script>alert('修改成功');window.opener.location.href=window.opener.reload(); </script>");
或
Response.Write(" <script>alert('修改成功');window.opener.location.href='父页面地址'; </script>");
------解决方案--------------------你的子窗体是模式窗口还是弹出窗口,弹出窗口才可以用你那种方法,模式窗口是要用返回值的方式的