刷新modalDialog的父窗口
刷新modalDialog的父窗口
2005-09-14
添加和更新数据记录时经常要使用到模态窗口,在操作成功后往往要刷新父窗口中的列表,本文讨论了一种比较简便的做法。
1、新建页面parent.htm作为父窗口
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2 <html>
3 <head>
4 <title></title>
5 <meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
6 <meta name="ProgId" content="VisualStudio.HTML">
7 <meta name="Originator" content="Microsoft Visual Studio .NET 7.1">
8 <script language="javascript">
9 <!--
10 /**
11 * 用途:打开模态窗口,并且当返回值为true时,刷新窗口
12 *
13 * @param newUrl 模态窗口页面路径
14 * @param wLen 模态窗口宽度
15 * @param iLen 模态窗口高度
16 **/
17 function OpenModalDialog(newURL,wLen,hLen)
18 {
19 try
20 {
21 //初始化变量,用于接收页面反回值。
22 var recdata=false;
23 //模式窗口打开指定的窗口链接
24 recdata=showModalDialog(newURL,"DescWindow",
25 "dialogWidth:"+wLen+"px;dialogHeight:"+hLen+"px;center:1;scroll:1;help:0;status:0");
26
27 //判断对应的返回值
28 if(recdata==true)
29 {
30 // 刷新当前窗口
31 window.location.reload();
32 window.alert("刷新窗口~~");
33 }
34 }
35 catch(err)
36 {}
37 }
38 -->
39 </script>
40 </head>
41 <body>
42 <a href="javascript: OpenModalDialog('sub.aspx', 700, 500)">打开模态窗口</a>
43 </body>
44 </html>
45
2 <html>
3 <head>
4 <title></title>
5 <meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
6 <meta name="ProgId" content="VisualStudio.HTML">
7 <meta name="Originator" content="Microsoft Visual Studio .NET 7.1">
8 <script language="javascript">
9 <!--
10 /**
11 * 用途:打开模态窗口,并且当返回值为true时,刷新窗口
12 *
13 * @param newUrl 模态窗口页面路径
14 * @param wLen 模态窗口宽度
15 * @param iLen 模态窗口高度
16 **/
17 function OpenModalDialog(newURL,wLen,hLen)
18 {
19 try
20 {
21 //初始化变量,用于接收页面反回值。
22 var recdata=false;
23 //模式窗口打开指定的窗口链接
24 recdata=showModalDialog(newURL,"DescWindow",
25 "dialogWidth:"+wLen+"px;dialogHeight:"+hLen+"px;center:1;scroll:1;help:0;status:0");
26
27 //判断对应的返回值
28 if(recdata==true)
29 {
30 // 刷新当前窗口
31 window.location.reload();
32 window.alert("刷新窗口~~");
33 }
34 }
35 catch(err)
36 {}
37 }
38 -->
39 </script>
40 </head>
41 <body>
42 <a href="javascript: OpenModalDialog('sub.aspx', 700, 500)">打开模态窗口</a>
43 </body>
44 </html>
45
2、建立页面sub.aspx:
1 <%@ Page language="c#" Codebehind="WebForm1.aspx.cs" AutoEventWireup="false" Inherits="TestSyntax.WebForm1" %>
2 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
3 <HTML>
4 <HEAD>
5 <title>sub</title>
6 <meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
7 <meta content="C#" name="CODE_LANGUAGE">
8 <meta content="JavaScript" name="vs_defaultClientScript">
9 <meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
10 <base target="_self">
11 </HEAD>
12 <body>
13 <form id="Form1" method="post" runat="server">
14 <asp:Button id="btnOk" runat="server" Text="确 定"></asp:Button>
15 <INPUT type="button" value="取 消" onclick="javascript: window.close();">
16 </form>
17 </body>
18 </HTML>
19
2 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
3 <HTML>
4 <HEAD>
5 <title>sub</title>
6 <meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
7 <meta content="C#" name="CODE_LANGUAGE">
8 <meta content="JavaScript" name="vs_defaultClientScript">
9 <meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
10 <base target="_self">
11 </HEAD>
12 <body>
13 <form id="Form1" method="post" runat="server">
14 <asp:Button id="btnOk" runat="server" Text="确 定"></asp:Button>
15 <INPUT type="button" value="取 消" onclick="javascript: window.close();">
16 </form>
17 </body>
18 </HTML>
19
3、sub.aspx.cs代码如下
1 using System;
2 using System.Collections;
3 using System.ComponentModel;
4 using System.Data;
5 using System.Drawing;
6 using System.Web;
7 using System.Web.SessionState;
8 using System.Web.UI;
9 using System.Web.UI.WebControls;
10 using System.Web.UI.HtmlControls;
11
12 namespace TestSyntax
13 {
14 /// <summary>
15 /// WebForm1 的摘要说明。
16 /// </summary>
17 public class WebForm1 : System.Web.UI.Page
18 {
19 protected System.Web.UI.WebControls.Button btnOk;
20
21 private void Page_Load(object sender, System.EventArgs e)
22 {
23 // 在此处放置用户代码以初始化页面
24 }
25
26 #region Web 窗体设计器生成的代码
27 override protected void OnInit(EventArgs e)
28 {
29 //
30 // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
31 //
32 InitializeComponent();
33 base.OnInit(e);
34 }
35
36 /// <summary>
37 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
38 /// 此方法的内容。
39 /// </summary>
40 private void InitializeComponent()
41 {
42 this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
43 this.Load += new System.EventHandler(this.Page_Load);
44
45 }
46 #endregion
47
48 /// <summary>
49 /// 操作成功,设定模态窗口的返回值为true,用来刷新父窗口
50 /// </summary>
51 /// <param name="sender"></param>
52 /// <param name="e"></param>
53 private void btnOk_Click(object sender, System.EventArgs e)
54 {
55 string strScript = @"<script>window.returnValue=true;window.close();</script>";
56
57 this.Response.Write(strScript);
58 }
59 }
60 }
61
2 using System.Collections;
3 using System.ComponentModel;
4 using System.Data;
5 using System.Drawing;
6 using System.Web;
7 using System.Web.SessionState;
8 using System.Web.UI;
9 using System.Web.UI.WebControls;
10 using System.Web.UI.HtmlControls;
11
12 namespace TestSyntax
13 {
14 /// <summary>
15 /// WebForm1 的摘要说明。
16 /// </summary>
17 public class WebForm1 : System.Web.UI.Page
18 {
19 protected System.Web.UI.WebControls.Button btnOk;
20
21 private void Page_Load(object sender, System.EventArgs e)
22 {
23 // 在此处放置用户代码以初始化页面
24 }
25
26 #region Web 窗体设计器生成的代码
27 override protected void OnInit(EventArgs e)
28 {
29 //
30 // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
31 //
32 InitializeComponent();
33 base.OnInit(e);
34 }
35
36 /// <summary>
37 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
38 /// 此方法的内容。
39 /// </summary>
40 private void InitializeComponent()
41 {
42 this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
43 this.Load += new System.EventHandler(this.Page_Load);
44
45 }
46 #endregion
47
48 /// <summary>
49 /// 操作成功,设定模态窗口的返回值为true,用来刷新父窗口
50 /// </summary>
51 /// <param name="sender"></param>
52 /// <param name="e"></param>
53 private void btnOk_Click(object sender, System.EventArgs e)
54 {
55 string strScript = @"<script>window.returnValue=true;window.close();</script>";
56
57 this.Response.Write(strScript);
58 }
59 }
60 }
61
这样,实现了操作成功后刷新父窗口,又避免了取消操作的无用刷新。
All the posts in this blog are provided "AS IS" with no warranties, and confer no rights. Except where otherwise noted, content on this site is licensed under a Creative Commons Attribution 2.5 China Mainland License.