Interview Question
Qus: Ways to achieve redirection from one page to other page in webforms.
Page processing can be transferred from one page to other page with the help of server.transfer without making a post back to the browser. Redirection of the page from another page can be achieved with the help of response.redirect which perform a post-back to the client browser.
Answers (2)
Response.Redirect("YourPage.aspx");
OR
Server.Transfer("YourPage.aspx");