|
|
这里是孟子提供的方法
这里介绍Ihttpmodule处理请求管道的方法。Response.Redirect的原理是服务器设置返回http状态码为302,然后客户端执行跳转,用reflector可以看到.net的代码段。
以下是HttpResponse类的Redirect方法中的跳转代码
<div style="padding-right: 5.4pt; padding-left: 5.4pt; background: #e6e6e6; padding-bottom: 4px; width: 95%; padding-top: 4px;"> this.StatusCode=0x12e;
this.RedirectLocation=url; |
|