Hi @Shashanka Thota ,
There are two ways to redirect:Server.Transfer and Response.Redirect. I think, Response.Redirect is the best way to redirect.
Response.Redirect the transfer is done by the browser while with Server.Transfer - it is done on the server.Use Server.Transfer when you want to navigate to pages that are on the same server and use Response.Redirect when you want to navigate between pages that are on different servers / domains.
Since Response.Redirect have a security concern,it better to use.
https://stackoverflow.com/questions/30356235/what-is-the-best-approach-for-redirecting-user-in-asp-net
Best regards,
Yijing Sun
If the answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.