在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
本文实例讲述了ASP.NET中Global和URLReWrite用法。分享给大家供大家参考。具体如下: Global.asax: 有时候叫做 ASP.NET 应用程序文件,提供了一种在一个中心位置响应应用程序级或模块级事件的方法。你可以使用这个文件实现应用程序安全性以及其它一些任务。 重点了解:application_Start; application_BeginRequest; application_Error; ① application_Start:自从服务器启动起来,网站第一次被访问的时候Application_Start执行 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程序设计有所帮助。 |
请发表评论