ASP.NET中Global和URLReWrite用法

本文实例讲述了ASP.NET中Global和URLReWrite用法。分享给大家供大家参考。具体如下:

Global.asax:

有时候叫做 ASP.NET 应用程序文件,提供了一种在一个中心位置响应应用程序级或模块级事件的方法。你可以使用这个文件实现应用程序安全性以及其它一些任务。

重点了解:application_Start; application_BeginRequest; application_Error;

① application_Start:自从服务器启动起来,网站第一次被访问的时候Application_Start执行
② Application_Error :程序中发生未处理异常
③ Session_End:只有进程内的Session才会调用,session_End进程外的Session不会
④ application_BeginRequest:当一个请求过来的时候,便会调用application_BeginRequest,访问静态页面时application_BeginRequest不会处理,IIS直接将静态页面文件给了浏览器。即使访问一个不存在的页面,Application_BeginRequest方法也会被调用。

URLReWrite:

丑链接:http://localhost/viewPerson.aspx?id=1

很丑!处女座不能忍。

帅链接:http://localhost/viewPerson-1.aspx

怎么整成帅链接那样的?

利用application_BeginRequest无论访问什么页面,除了静态页面,都转向其他程序处理的原理。

使用正则表达式对【丑链接】进行匹配,当用户访问http://localhost/viewPerson-1.aspx的时候,会触发global.asax调用application_BeginRequest方法,正则表达式匹配成功后,执行Context.RewritePath("/ViewPerson.aspx?id=" + id); 搞定,整成【帅链接】,就这么简单。

使用正则表达式:

protected void Application_BeginRequest(object sender, EventArgs e)
{
  Match match = Regex.Match(Context.Request.Path, @"^/ViewPerson\-(\d+)\.aspx$");
  if (match.Success)
  {
 string id = match.Groups[1].Value;//拿到(\d+)就是id 的值
 Context.RewritePath("/ViewPerson.aspx?id=" + id);
  }
}

希望本文所述对大家的asp.net程序设计有所帮助。

(0)

相关推荐

  • Global.asax取物理路径/取绝对路径具体方法

    虚拟路径 复制代码 代码如下: Server.MapPath("~/") 取得的就是虚拟路径 取绝对路径 复制代码 代码如下: string absolutelyPath =AppDomain.CurrentDomain.BaseDirectory; 取物理路径和应用程序路径 复制代码 代码如下: System.Web.HttpContext.Current.Request.ApplicationPath

  • Global.cs中自动获取未处理的异常

    下面就是简单的事例: 1)引起异常的代码 复制代码 代码如下: protected void Button1_Click(object sender, EventArgs e) { int a = 5; int b = 2; int c; c = a / (b - 2); } 2)Global.cs中的代码 复制代码 代码如下: protected void Application_Error(object sender, EventArgs e) { //获取异常信息 string strEr

  • Global.asax取绝对路径的方法

    在Global.asax文件中取绝对路径的方法: 复制代码 代码如下: string absolutelyPath =AppDomain.CurrentDomain.BaseDirectory;

  • c#定时器和global实现自动job示例

    一.创建一个cs文件,定义Time 对象 复制代码 代码如下: public class WebTimer_AutoRepayment{    static WebTimer_AutoRepayment()    {        _WebTimerTask = new WebTimer_AutoRepayment();    }    /// <summary>    /// 实例化    /// </summary>    /// <returns></ret

  • Global.asax的Application_BeginRequest实现url重写无后缀的代码

    利用Global.asax的Application_BeginRequest 实现url 重写 无后缀 复制代码 代码如下: <%@ Application Language="C#" %> <script RunAt="server"> void Application_BeginRequest(object sender, EventArgs e) { string oldUrl = System.Web.HttpContext.Curr

  • 在Global.asax文件里实现通用防SQL注入漏洞程序(适应于post/get请求)

    首先,创建一个SQLInjectionHelper类完成恶意代码的检查 代码如下: 复制代码 代码如下: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Text.RegularExpressions; /// <summary> ///SQLInjectionHelper 的摘要说明 /// </summary> public cla

  • ASP.net全局程序文件Global.asax用法分析

    本文详细讲述了ASP.net全局程序文件Global.asax用法,分享给大家供大家参考.具体分析如下: 一般来说ASP.NET应用程序只能有一个Global.asax文件,该文件支持许多项.具体分析如下: •Application_Start:在应用程序接收到第一个请求时调用,这是在应用程序中给应用程序级的变量赋值或指定对所有用户必须保持的状态的理想位置. •  Session_Start:类似于Application_Start事件,但这个事件在用户第一次访问应用程序时调用.例如,Appli

  • asp.net 在global中拦截404错误的实现方法

    复制代码 代码如下: void Application_Error(object sender, EventArgs e) { if(Context != null) { HttpContext ctx = HttpContext.Current; Exception ex = ctx.Server.GetLastError(); HttpException ev = ex as HttpException; if(ev!= null) { if(ev.GetHttpCode() == 404)

  • Global.asax的Application_Error实现错误记录/错误日志的代码

    利用Global.asax的Application_Error实现错误记录 错误日志 复制代码 代码如下: void Application_Error(object sender, EventArgs e) { // 在出现未处理的错误时运行的代码 Exception ex = Server.GetLastError().GetBaseException(); StringBuilder str = new StringBuilder(); str.Append("\r\n" + D

  • 在C#中global关键字的作用及其用法

    global 是 C# 2.0 中新增的关键字,理论上说,如果代码写得好的话,根本不需要用到它. 假设你现在写了一个类,名字叫 System.那么当你再在代码里写 System 的时候,编译器就不知道你是要指你写的 System 类还是系统的 System 命名空间,而 System 命名空间已经是根命名空间了,无法再通过完全限名来指定.在以前的 C# 版本中,这就是一个无法解决的问题.现在,可以通过global::System来表示 System 根命名空间,而用你自己的MyNamespace

随机推荐