what is the difference between server.Transfer and
response.redirect in .net
Answer Posted / sivaprasad
Server.Transfer will execute at server side itself, through
this we can access previous page control's in next page.
Response.Redirect will work at client side means server
will send "Success" code to browser by saying send a
request for specific URL.based on this client will request
for the specific URL. if URL is not found in virtual
Directory client will give a message saying "Page not
found".
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
What is asp.net caching?
What are the asp.net 2.0 features?
How do u deploy ur project?
What is the use of ASP.NET routing?
List the events in page life cycle.
What are the navigation ways between pages available in ASP.NET?
What is the concept of view state in asp.net?
Explain the difference between authentication and authorization.
Can more than one person use the same login?
How can we communicate with each server in N-tier Architecture? and what are the methods?
How can we create pie chart in asp.net?
Explain the asp.net mvc request life cycle? : asp.net mvc
What does it mean your session has timed out?
What are the different types of sessions in asp.net? Name them?
Explain how to prepare culture-specific formatting in .net.