Response Redirect

  • Thread starter Thread starter Tom Gao
  • Start date Start date
T

Tom Gao

Hi guys

whats the difference between response redirect and server transfer ?

Thanks
Tom
 
response redirect sends an HTTP header to the browser. The header indicates
that the page has moved and that the browser should immediately GET from a
different web URL. The browser complies.

server transfer tells IIS that the processing of the page should stop and
the processing of a different page should start. The alternate page is in
charge of creating the HTTP response. There is no "round-trip" involved.

HTH

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top