Response.Redirect Vs Server.Transfer
Why not use Server.Transfer instead of Response.Redirect especially if both pages are aspx?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sukesh MarlaPosted Sep 20, 2012, 11:39 PM
Server.Transger is faster than the Response.Redirect
but if you want to to move to the page which are on some other server, let say if you want to redirect to www.Google.com from http://localhost:5233/Customers/Customer.aspx You cant use server.transfer.
In Server.Transfer even URL remain unaffected,
Check this is correct answer if it helped.