zoukankan      html  css  js  c++  java
  • PageHelper.cs(20170223)

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Web;
    using System.Web.UI;
    
    namespace System.CRM.Common
    {
        /// <summary>
        /// Jscript帮助类/页面常用方法包装
        /// </summary>
        public class PageHelper
        {
    
    
            /// <summary>
            /// 弹出信息,并跳转指定页面。
            /// </summary>
            public static void AlertAndRedirect(string message, string toURL)
            {
                string js = "<script language=javascript>alert('{0}');window.location.replace('{1}')</script>";
                HttpContext.Current.Response.Write(string.Format(js, message, toURL));
                HttpContext.Current.Response.End();
            }
    
            /// <summary>
            /// 弹出信息,并返回历史页面
            /// </summary>
            public static void AlertAndGoHistory(string message, int value)
            {
                string js = @"<Script language='JavaScript'>alert('{0}');history.go({1});</Script>";
                HttpContext.Current.Response.Write(string.Format(js, message, value));
                HttpContext.Current.Response.End();
            }
    
            /// <summary>
            /// 直接跳转到指定的页面
            /// </summary>
            public static void Redirect(string toUrl)
            {
                string js = @"<script language=javascript>window.location.replace('{0}')</script>";
                HttpContext.Current.Response.Write(string.Format(js, toUrl));
    
                //p.ClientScript.RegisterStartupScript(p.GetType(), "Redirect", string.Format(js, toUrl));
            }
    
            /// <summary>
            /// 弹出信息 并指定到父窗口
            /// </summary>
            public static void AlertAndParentUrl(string message, string toURL)
            {
                string js = "<script language=javascript>alert('{0}');window.top.location.replace('{1}')</script>";
                HttpContext.Current.Response.Write(string.Format(js, message, toURL));
            }
    
            /// <summary>
            /// 返回到父窗口
            /// </summary>
            public static void ParentRedirect(string ToUrl)
            {
                string js = "<script language=javascript>window.top.location.replace('{0}')</script>";
                HttpContext.Current.Response.Write(string.Format(js, ToUrl));
            }
    
            /// <summary>
            /// 返回历史页面
            /// </summary>
            public static void BackHistory(int value)
            {
                string js = @"<Script language='JavaScript'>history.go({0});</Script>";
                HttpContext.Current.Response.Write(string.Format(js, value));
                HttpContext.Current.Response.End();
            }
    
            /// <summary>
            /// 弹出信息
            /// </summary>
            public static void Alert(Page p, string message)
            {
    
                //string js = "<script language='javascript'>alert('{0}');</script>";
                p.ClientScript.RegisterStartupScript(p.GetType(), "message", "<script language='javascript' defer>alert('" + message.ToString() + "');</script>");
                //p.RegisterStartupScript("message", "<script language='javascript' defer>alert('" + message.ToString() + "');</script>");
                //p.Response.Write(string.Format(js, message));
    
            }
    
            /// <summary>
            /// 注册脚本块
            /// </summary>
            public static void RegisterScriptBlock(System.Web.UI.Page page, string _ScriptString)
            {
                page.ClientScript.RegisterStartupScript(page.GetType(), "scriptblock", "<script type='text/javascript'>" + _ScriptString + "</script>");
            }
    
    
        }
    }
  • 相关阅读:
    Vue单向数据流
    npm常用命令
    vue自定义指令
    slot的用法(Vue插槽)
    js闭包
    canvas 给画的多边形着色
    canvas画线
    canvas初体验
    canvas
    json
  • 原文地址:https://www.cnblogs.com/zyx321/p/6435918.html
Copyright © 2011-2022 走看看