鉴于大家对ASP.net十分关注,我们编辑小组在此为大家搜集整理了“ASP.NET中使用HttpModule实现Redirect ”一文,供大家参考学习
使用HttpModule而不是HttpHandler可以避免无限循环的问题。HttpHandler其实是截获Handler,所有后来的事都要自己手工解决。我只是重新定向,没有这么复杂。HttpModule看上去比较实惠,所以就是这个了。
public class HttpModule : IHttpModule
...{
public void Dispose()
...{ }
public void Init(HttpApplication context)
...{
context.AcquireRequestState += new EventHandler(context_BeginRequest);
}
private void context_BeginRequest(object sender, EventArgs e)
...{
string From = Config.GetAppSettings("From");
string To = Config.GetAppSettings("To");
string WebAppPath = HttpContext.Current.Request.ApplicationPath;
From = From.Replace("~/", "");
To = To.Replace("~/", WebAppPath + "/");
if (HttpContext.Current.Request.RawUrl.Contains(From))
...{
HttpContext.Current.Server.Transfer(To, true);
}
}
}
只要在Web.config里面加上From和To的AppSetting就可以了。中国自学编程网,www.zzzj.com ,Web.config中加入如下httpModule:
<add name="HttpModule" type="HttpModule, MyLib" />
前面是类,后面是dll的文件名。如果IIS中没有这个虚拟文件,要这样设置:打开ISAPI,设置Mapping,勾选Check that file exists, 这样,打开浏览器就可以访问到假地址。
本新闻共2页,当前在第1页 1 2