You don't "convert" ASP pages to XHTML. You should just make sure that your ASP pages output valid XHTML.
So, for example, this *could* be valid XHTML (except for the missing doc type):
Code:
<%@ Language="vbscript" %>
<%Option Explicit%>
<% 'all vbcode code %>
But it all depends on what your page outputs.
For example, this statement:
Response.Write("Something<br>")
results in invalid XHTML because of the <br> tag while this one:
Response.Write("Something<br />")
outputs valid XHTML.
HtH,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.