一些web开发中常用的、做成cs文件的js代码 - 搜刮来的
生活随笔
收集整理的這篇文章主要介紹了
一些web开发中常用的、做成cs文件的js代码 - 搜刮来的
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
using?System;
using?System.Web;
using?System.Web.UI;
namespace?COCOWO.COMP
{
????///?<summary>
????///?一些常用的Js調(diào)用
????///?創(chuàng)建時間:2006-8-3
????///?創(chuàng)建者:馬先光
????///?</summary>
????public?class?Jscript
????{????????
???????????????
????????///?<summary>
????????///?彈出JavaScript小窗口
????????///?</summary>
????????///?<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
????????}
????????///?<summary>
????????///?彈出消息框并且轉(zhuǎn)向到新的URL
????????///?</summary>
????????///?<param?name="message">消息內(nèi)容</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
????????}
????????
????????///?<summary>
????????///?回到歷史頁面
????????///?</summary>
????????///?<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
????????}
????????///?<summary>
????????///?關(guān)閉當(dāng)前窗口
????????///?</summary>
????????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
????????}
????????///?<summary>
????????///?刷新父窗口
????????///?</summary>
????????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
????????}
???????
????????///?<summary>
????????///?刷新打開窗口
????????///?</summary>
????????public?static?void?RefreshOpener()
????????{
????????????#region
????????????string?js?=?@"<Script?language='JavaScript'>
????????????????????opener.location.reload();
??????????????????</Script>";
????????????HttpContext.Current.Response.Write(js);
????????????#endregion
????????}
????????///?<summary>
????????///?打開指定大小的新窗體
????????///?</summary>
????????///?<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
????????}
???????
????????
????????///?<summary>
????????///?轉(zhuǎn)向Url制定的頁面
????????///?</summary>
????????///?<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
????????}
????????///?<summary>
????????///?打開指定大小位置的模式對話框
????????///?</summary>
????????///?<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
????????}?
???????
????}
}
using?System.Web;
using?System.Web.UI;
namespace?COCOWO.COMP
{
????///?<summary>
????///?一些常用的Js調(diào)用
????///?創(chuàng)建時間:2006-8-3
????///?創(chuàng)建者:馬先光
????///?</summary>
????public?class?Jscript
????{????????
???????????????
????????///?<summary>
????????///?彈出JavaScript小窗口
????????///?</summary>
????????///?<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
????????}
????????///?<summary>
????????///?彈出消息框并且轉(zhuǎn)向到新的URL
????????///?</summary>
????????///?<param?name="message">消息內(nèi)容</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
????????}
????????
????????///?<summary>
????????///?回到歷史頁面
????????///?</summary>
????????///?<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
????????}
????????///?<summary>
????????///?關(guān)閉當(dāng)前窗口
????????///?</summary>
????????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
????????}
????????///?<summary>
????????///?刷新父窗口
????????///?</summary>
????????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
????????}
???????
????????///?<summary>
????????///?刷新打開窗口
????????///?</summary>
????????public?static?void?RefreshOpener()
????????{
????????????#region
????????????string?js?=?@"<Script?language='JavaScript'>
????????????????????opener.location.reload();
??????????????????</Script>";
????????????HttpContext.Current.Response.Write(js);
????????????#endregion
????????}
????????///?<summary>
????????///?打開指定大小的新窗體
????????///?</summary>
????????///?<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
????????}
???????
????????
????????///?<summary>
????????///?轉(zhuǎn)向Url制定的頁面
????????///?</summary>
????????///?<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
????????}
????????///?<summary>
????????///?打開指定大小位置的模式對話框
????????///?</summary>
????????///?<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
????????}?
???????
????}
}
轉(zhuǎn)載于:https://www.cnblogs.com/hbl/archive/2007/11/23/969531.html
總結(jié)
以上是生活随笔為你收集整理的一些web开发中常用的、做成cs文件的js代码 - 搜刮来的的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 并发数据结构 : SpinWait
- 下一篇: 一个立即关闭显示器的小软件(Masm开发