日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

一些web开发中常用的、做成cs文件的js代码 - 搜刮来的

發(fā)布時間:2023/12/18 编程问答 21 豆豆
生活随笔 收集整理的這篇文章主要介紹了 一些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
????????}
?
???????

????}

}

轉(zhuǎn)載于:https://www.cnblogs.com/hbl/archive/2007/11/23/969531.html

總結(jié)

以上是生活随笔為你收集整理的一些web开发中常用的、做成cs文件的js代码 - 搜刮来的的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。