[学习公共库]常用的JS代码.生成CS文件 |
弹出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 }
|
|
|

.: 公告
|
« | September 2025 | » | 日 | 一 | 二 | 三 | 四 | 五 | 六 | | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | | | | | |
|
.: 我的分类(专题)
|

.: 最新日志
.: 最新回复
|

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

.: 留言板
|

.: 链接
|

|