open html with c#

  • Thread starter Thread starter THM5101
  • Start date Start date
T

THM5101

Hello.
I create HTML page to my Web Application project.
How can I open\call\show the page from anther page? The
first page is set as start page (aspx page) in that page I
have button, and my question is how can I open the second
page in button click event in C# code ?
Thank you
 
You can do this in many ways. It depends on what you want to do.

Eg:
this.Response.Redirect("your_html.html");


Regards,
Lars-Inge Tønnessen
 
Back
Top