zoukankan      html  css  js  c++  java
  • URL重写之IHttpModule

    using System;
    using System.Data;
    using System.Configuration;
    using System.Linq;
    using System.Web;
    using System.Web.Security;
    using System.Web.UI;
    using System.Web.UI.HtmlControls;
    using System.Web.UI.WebControls;
    using System.Web.UI.WebControls.WebParts;
    using System.Xml.Linq;

    namespace MyModule
    {
        /// <summary>
        /// 重写接口Ihttpmodule
        /// </summary>
        public class MyModule:IHttpModule
        {
            public void Init(HttpApplication application)
            {
                application.BeginRequest+=new EventHandler(Application_BeginRequest);
                application.EndRequest+=new EventHandler(Application_EndRequest);
               
            }

            public void Dispose() { }

            private void Application_BeginRequest(Object source, EventArgs e)
            {
                #region 之前的简单测试
                //HttpApplication Application = (HttpApplication)source;
                //HttpRequest Request = Application.Context.Request;
                ////Application["test"] = (Request.AcceptTypes)[0];
                //HttpResponse Response = Application.Context.Response;
                ////foreach (string str in Request.AcceptTypes)
                ////{
                ////    Response.Write(str + "<br/>");
                ////}
                ////System.Web.HttpContext.Current.Server.Transfer("~/Headers.aspx", false);
                //string url = System.Web.HttpContext.Current.Server.MapPath("~/Headers.aspx");
                ////System.Web.HttpContext.Current.Server.Transfer("Heads.aspx");
                //Response.Write(Request.Url+Request.Url.Port.ToString());
                //Response.Write("<script>window.open('http://www.google.cn');</script>");
                //Response.Write(Request.ContentType+"时间为:"+DateTime.Now.ToLongTimeString());
                //Response.Write("<h1>Beginning of Request</h1><hr>");
                #endregion

                string requestURL = HttpContext.Current.Request.Url.ToString();
                if (requestURL.IndexOf("do") != -1)
                {
                    HttpContext.Current.Server.Transfer("Heads.aspx");
                    HttpContext.Current.Response.Write("只是一个假地址!");
                }
                HttpContext.Current.Response.Write("只是一个真地址!");
            }
            private void Application_EndRequest(Object source, EventArgs e)
            {
                HttpApplication application = (HttpApplication)source;
                HttpResponse Response = application.Context.Response;
                Response.Write("<h1>End of Request</h1><hr>");
            }       

        }
    }

    web.config中应插入相应的语句:

    在<system.webr>节点下:<httpModules>
          <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
          <add name="MyModule" type="MyModule.MyModule" />
        </httpModules>

  • 相关阅读:
    字段修改名称
    coercing to Unicode: need string or buffer, geoprocessing value object found
    为什么ArcGIS 10.3导出 Shapefile的字段名会被截断成3个汉字?解决方法如下
    arcgis python 使用光标和内存中的要素类将数据加载到要素集 学习:http://zhihu.esrichina.com.cn/article/634
    arcgis python 获得arcgis安装版本和安装位置
    arcgis python 不知道一个工具怎么用
    arcgis 地理坐标系 699个,投影坐标系是4767
    arcgis python 参数类型和含义
    win10 svn commit无响应
    新建网站与新建Asp.Net Web 应用程序的区别
  • 原文地址:https://www.cnblogs.com/xinzhuangzi/p/4100672.html
Copyright © 2011-2022 走看看