本站首页    管理页面    写新日志    退出

The Neurotic Fishbowl

[学习公共库]常用的JS代码.生成CS文件
麦林 发表于 2007/6/3 15:04:25

弹出JavaScript小窗口       /// <param name="js">窗口信息</param>        public static void Alert(string message)        {            #region            string js = @"<Script language='JavaScript'>                    alert('" + message + "');</Script>";            HttpContext.Current.Response.Write(js);            #endregion        } 弹出消息框并且转向到新的URL        /// <param name="message">消息内容</param>        /// <param name="toURL">连接地址</param>        public static void AlertAndRedirect(string message, string toURL)        {            #region            string js = "<script language=javascript>alert('{0}');window.location.replace('{1}')</script>";            HttpContext.Current.Response.Write(string.Format(js, message, toURL));            #endregion        } 回到历史页面        /// <param name="value">-1/1</param>        public static void GoHistory(int value)        {            #region            string js = @"<Script language='JavaScript'>                    history.go({0});                    </Script>";            HttpContext.Current.Response.Write(string.Format(js, value));            #endregion        } 关闭当前窗口        public static void CloseWindow()        {            #region            string js = @"<Script language='JavaScript'>                    parent.opener=null;window.close();                    </Script>";            HttpContext.Current.Response.Write(js);            HttpContext.Current.Response.End();            #endregion        } 刷新父窗口        public static void RefreshParent(string url)        {            #region            string js = @"<script>try{top.location="""+url+@"""}catch(e){location="""+url+@"""}</script>";            HttpContext.Current.Response.Write(js);            #endregion        } 刷新打开窗口        public static void RefreshOpener()        {            #region            string js = @"<Script language='JavaScript'>                    opener.location.reload();                  </Script>";            HttpContext.Current.Response.Write(js);            #endregion        } 打开指定大小的新窗体        /// <param name="url">地址</param>        /// <param name="width">宽</param>        /// <param name="heigth">高</param>        /// <param name="top">头位置</param>        /// <param name="left">左位置</param>        public static void OpenWebFormSize(string url, int width,int heigth,int top,int left)        {            #region            string js = @"<Script language='JavaScript'>window.open('" + url + @"','','height=" + heigth + ",width=" + width + ",top="+top+",left="+left+",location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,titlebar=no,toolbar=no,directories=no');</Script>";             HttpContext.Current.Response.Write(js);            #endregion        } 转向Url制定的页面        /// <param name="url">连接地址</param>        public static void JavaScriptLocationHref(string url)        {            #region            string js = @"<Script language='JavaScript'>                    window.location.replace('{0}');                  </Script>";            js = string.Format(js, url);            HttpContext.Current.Response.Write(js);            #endregion        } 打开指定大小位置的模式对话框        /// <param name="webFormUrl">连接地址</param>        /// <param name="width">宽</param>        /// <param name="height">高</param>        /// <param name="top">距离上位置</param>        /// <param name="left">距离左位置</param>        public static void ShowModalDialogWindow(string webFormUrl, int width, int height, int top, int left)        {            #region            string features = "dialogWidth:" + width.ToString() + "px"                + ";dialogHeight:" + height.ToString() + "px"                + ";dialogLeft:" + left.ToString() + "px"                + ";dialogTop:" + top.ToString() + "px"                + ";center:yes;help=no;resizable:no;status:no;scroll=yes";            ShowModalDialogWindow(webFormUrl, features);            #endregion        }         public static void ShowModalDialogWindow(string webFormUrl, string features)        {            string js = ShowModalDialogJavascript(webFormUrl, features);            HttpContext.Current.Response.Write(js);        }         public static string ShowModalDialogJavascript(string webFormUrl, string features)        {            #region            string js = @"<script language=javascript>                                                        showModalDialog('" + webFormUrl + "','','" + features + "');</script>";            return js;            #endregion        }

阅读全文(1904) | 回复(0) | 编辑 | 精华

 



发表评论:
昵称:
密码:
主页:
标题:
验证码:  (不区分大小写,请仔细填写,输错需重写评论内容!)
 

The Neurotic Fishbowl

.: 公告

fighting for the work!


Bloginess

«September 2025»
123456
78910111213
14151617181920
21222324252627
282930

.: 我的分类(专题)

首页(449)
文字感悟(103)
学习公共库(61)
生活体会(100)
资源收集(14)
.NET-Winform(27)
音乐文字(15)
心情小记(119)
SQL问题解决(10)


In the Bowl

.: 最新日志

C#打印代码
你看到的我是蓝色的
即将逝去的3月
这个假期
两个月过去
表名存在其他表时获取数据
条码打印
Remoting的用法
INI文件用法


.: 最新回复

回复:条码打印
回复:条码打印
回复:即将逝去的3月
回复:cookie对象使用
回复:条码打印
回复:JSP学习(字符串比较)
回复:应收应付核销规则及常见问题(续)
回复:两个月过去
回复:两个月过去


The Fishkeeper
blog名称:栗色?蓝色?
日志总数:449
评论数量:201
留言数量:37
访问次数:2262173
建立时间:2006年5月16日



Text Me

.: 留言板

签写新留言

链接完成
回:loseVC
来喽~
转转......
新年啦
对自己说
祝福
回:佑手
WO


Other Fish in the Sea

.: 链接


loseVC's BLOG
Collapsar_feel
布衣加针
C#and.Net
Kinogam Web




站点首页 | 联系我们 | 博客注册 | 博客登陆

Sponsored By W3CHINA
W3CHINA Blog 0.8 Processed in 0.031 second(s), page refreshed 144787505 times.
《全国人大常委会关于维护互联网安全的决定》  《计算机信息网络国际联网安全保护管理办法》
苏ICP备05006046号