2011年5月13日

摘要: 1.IHttpModule接口实现:namespace AspNetUnleashed{ public class UrlRemapper : IHttpModule { public void Init(HttpApplication app) { app.BeginRequest += new EventHandler(app_BeginRequest); } public void app_BeginRequest(Object s, EventArgs e) { // Get HTTP Context HttpApplication app = (HttpApplication)s; 阅读全文
posted @ 2011-05-13 01:16 Scarface 阅读(332) 评论(0) 推荐(0)

导航