交流,学习,进步!

千里之行始于足下……
  博客园  :: 首页  :: 联系 :: 订阅 订阅  :: 管理

模式窗口关闭,并刷新父窗口的方法

Posted on 2007-11-25 17:37  xixi8820  阅读(863)  评论(0编辑  收藏  举报
 1using System.Text;
 2
 3
 4//关闭并刷新父窗口
 5        public static void CloseWin(string url)
 6        {
 7            StringBuilder str = new StringBuilder();
 8            str.Append("<script language=javascript>");
 9            str.Append("var e = (window.parent.opener == undefined) ? dialogArguments : window.parent.opener.document;");
10            str.Append("e.location='" + url + "';");
11            str.Append("window.close();");
12            str.Append("</script>");
13
14            HttpContext.Current.Response.Write(str.ToString());
15        }