1. url重定向
Response.Redirect 302
Response.RedirectPermanent
2. 自定义处理程序拦截
public class selfModule : IHttpModule {
public void Init(HttpApplication app) {
app.PostResolveRequestCache+= (scr,args) => {
app.Context.RemapHandler(new selfHandler());
}
}
}
3. Server.Transfer(IHttpHandler对象 | 文件路径)
4. Server.Execute(Page对象)
网友评论