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); } }

 

你可能感兴趣的:(urlrewrite)