HTTPModule BeginRequest should us Response.Redirect or Server.Transfer

核能气质少年 提交于 2019-12-18 09:07:21

问题


We have a URLRewriting module that is using a Response.Redirect in the BeginRequest event method to change the destination page.

  • Would it be better to use Server.Transfer or Server.TransferRequest instead of Response.Redirect?
  • There are other HTTP Modules in the solution, will I bypass any of the other modules by using Server.Transfer or will the server begin as though it is a new request, just saving the round trip to the browser?
  • Will the client notice any differences and will the server treat the request differently in anyway?

The following questions cover the differences between redirect and transfer but not within an HTTP Module;

  • Server.Transfer Vs. Response.Redirect
  • Response.Redirect and Server.Transfer

EDIT: HttpContext.RewritePath is also used in the module so it seems we have three techniques to move the initial Request from the original path; Redirect, Transfer, RewritePath which respectively; go back to browser, back to start of HTTP pipeline and continue processing on new path.


回答1:


Here's the best explanation of Redirect vs Transfer vs RewritePath; http://www.developerfusion.com/article/4643/implementing-http-handlers-in-aspnet/4/

To summarise; Redirect requires roundtrip to browser, Transfer ensures the original Request object remains not the new request but has problems with Post-backs, Rewrite loses the orginal Request object but is the best for performance.



来源:https://stackoverflow.com/questions/1757336/httpmodule-beginrequest-should-us-response-redirect-or-server-transfer

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!