I am absolutely new to ASP.NET. In WinForms/ VB.NET we can display a form by
form2.show()
In my ASP.NET project, I have created a second webform but don’t know how to show it.
How can this be done?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
From your code-behind, you can redirect the user to the new page using the HttpResponse’s Redirect method:
If you want the user to self-navigate to the new page, use a hyperlink server control on your web form: