Preferred method to request a page?

  • Thread starter Thread starter Mutley
  • Start date Start date
M

Mutley

Hi,
I have written an HttpHandler to process page requests for a custom
file extension.
Other considerations aside which of the following 3 options is the most
efficient or preferred method of requesting a page:
1. GetCompiledPageInstance + ProcessRequest
2. Response.Redirect
3. Server.Transfer

Thanks in advance for any help
John
 
I'm not entirely sure what you mean by #1, but I can say that
Server.Transfer is far more efficient than Response.Redirect.
 
Back
Top