Which method do we use to redirect to user to another page without performing a round trip to the Client?

 Posted by vishalneeraj-24503 on 1/14/2014 | Category: ASP.NET Interview questions | Views: 2028 | Points: 40
Answer:

We use Server.Transfer method as it does not round-trip to the server and also we can not see the destination page URLs.

Syntax:-

Server.Transfer("your_page_name.aspx");


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response