Click here to Skip to main content
15,892,737 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi everyone ,

is it possible for me to direct an html page to a web page ? . is so how can i implement this or what should i do to ensure that these two applications works together(html and visual studio).
Posted

1 solution

You need to understand that the result of C# active processing on the server side IS HTML rendered on the client side. What get's sent to the browser is html encoded already, and all page-based technologies basically do the same thing: build an html file on the fly and send it to the browser, rather than just returning a flat html file from the file system.

So all that said: yes, you can easily link from a flat HTML page to an .aspx page or an MVC route, simply by using a basic anchor.

Such as:
HTML
<a href="http://www.mydotnetwebsite.com/index.aspx">Clicky</a>


On that note, Visual Studio is a design tool, not a web technology. No special sauce needed. Many of your questions can be answered at:
www.asp.net/get-started
[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900