Click here to Skip to main content
15,894,825 members
Please Sign up or sign in to vote.
2.00/5 (2 votes)
See more:
how to convert ".html" pages into asp.net ".aspx" pages
Posted
Updated 30-May-16 1:39am
Comments
Philippe Mori 29-Aug-11 21:10pm    
In practice,if you don't need server-controls for each item, it might be possible to only update specific portion of the page. That approach would make sense if you have a lot of static content...
Vincent Maverick Durano 11-Jun-16 12:54pm    
If you know the functionality of that page then I would suggest you to convert it by yourself. If you are new to ASP.NET then learn how it works and render HTML. Though there might be tools available for converting, still it wont guarantee you to convert it completely.

You can Paste the HTML source code on aspx page with all css,image folders (if html page have) and change the HTML controls to ASP.Net Controls manually.

For Example:
for Form tag in Asp.net ,You can change as
<form runat="server">
by adding runat="server".

and some controls can be changed as
<button id="id" text="label" önclick="sub"> in HTML.
<asp:Button id="id" text="label" OnClick="sub" runat="server" />
in asp.net by adding ASP and runat="server"</button>
 
Share this answer
 
v2
You need to redesign and remake your html page in aspx.
AFAIK, there is no other way.

There may be a few tools to help you out, but I dont expect any of them to work completely.
 
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