常用的Js调用类 C#

using System;
using System.Web;
using System.Web.UI;

namespace WeYyzyq.Comp
{
     ///


     /// 一些常用的Js调用
     /// 日期:2007-7-3
     /// 作者:胡小军
     ///

     public class Jscript
     {        
               
         ///
         /// 弹出JavaScript小窗口
         ///

         /// 窗口信息
         public static void Alert(string message)
         {
             #region
             string js = @"<script language=’JavaScript’>
                     alert(’" + message + "’);</script>";
             HttpContext.Current.Response.Write(js);
             #endregion
         }

         ///


         /// 弹出消息框并且转向到新的URL
         ///

         /// 消息内容
         /// 连接地址
         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
         }
        
         ///
         /// 回到历史页面
         ///

         /// -1/1
         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 language=’JavaScript’>
                     window.opener.location.href=’"+url+"’;window.close();</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
         }


         ///


         /// 打开指定大小的新窗体
         ///

         /// 地址
         ///
         ///
         /// 头位置
         /// 左位置
         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制定的页面
         ///

         /// 连接地址
         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
         }

         ///


         /// 打开指定大小位置的模式对话框
         ///

         /// 连接地址
         ///
         ///
         /// 距离上位置
         /// 距离左位置
         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
         }        

     }
}

这是Jscript.cs类的所有代码,把它放到项目里就可以直接调用了,这样做是非常方便的`````相信有很多程序员都有这样的感受`````

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值