How to integrate existing HTML into ASP.NET?

liunx

Guest
I've got a possible project on the way where the author has done a wonderful job on navigation buttons and general graphics on his site.

The site is all HTML. He needs some back-end coding for database and merchant account. How on earth do I incorporate his HTML into an ASP.NET framework?IIS recongizes html (and legacy asp) code from aspx file. which is good news for you.

what I would do if I were you:
1)change all filename.html to filename.aspx (include all html links)

2)certain aspx page will require some database driven presentation. go to those pages, locate the proper area and insert some .net data binding objects (datagrid, datalist, etc) and take care of ur code from code-behind.
 
Top