step 1. Convert Html page into .aspx. for example you have index.html, open that with dreamweaver and save as index.aspx.
step 2. open ASP.NET web site. put that file into that folder.
step 3. After putting this, right click folder, you will sub menu that menu choose Add New Item. After that the new dialog box will be opend. then choose class file. if you use C#, change that name as index.aspx.cs and finally press OK.
step 4. In that class file, change the following
public partial class _index : System.Web.UI.age
{
}
step 5. Now go to index.aspx, bottom of that page, there will be source, if your press that you will get html content
step 6. Write the following coding at top of that source
Im not sure if thats what Im after or not as I may have not explained properly.
I already have a asp.net project setup.
I have the HTML table built (code shown in orignal post).
I want to convert the table to an asp control so I can use the c# code to perform actions on it.
Dont ASP tables look something like...
<asp:Table ID="Table1" runat="server">
http://www.codeplex.com/HtmlTextWriterUtil
https://www.experts-exchange.com/questions/23697992/Convert-HTML-to-ASPX-or-ASP-to-ASPX-easily.html
http://www.dotnetspider.com/forum/103000-Convert-HTML-into-aspx.aspx
http://www.dotnetspider.com/forum/192093-How-Convert-Html-Page-Aspx-Page.aspx
Bhaumik