Converts HTML to XHTML

If you want to redesign the converted ASP.NET file in VS2005 or VS2008, maybe you need change the HTML codes to XHTML . If you mark 'HTML to XHTML' option when you convert your ASP codes, ASP2ASPX will convert your ASP to ASP.NET and HTML codes to XHTML automatically.

NOTE: ASP2ASPX DOES NOT convert the INCLUDED file to XHTML.


Btw, ASP2ASPX can't handle the following HTML:



  <tag <% ASP Codes %> ... > 
  <tag value='test > <!--missing a ' character-->
 

The above codes will be converted to:


  <tag /><% ASP.NET Codes %> ... >  
  <tag value='test > <!--missing a ' character--/>
 

The end tag is wrong, so please aviod the above HTML codes if you use HTML to XHTML option in ASP2ASPX.