處理xhtml 時,要獲得最大的相容性,就需要向firefox、safari、opera 和其他符合標準的瀏覽器發送application/xhtml+xml,而向IE 發送text/html:
程式碼
<%dim xm
if instr(request.servervariables("http_accept"), "application/xhtml+xml") > 0 or instr(request.servervariables("http_user_agent"), "w3c_validator") > 0 then
response.contenttype="application/xhtml+xml"
xm="<!doctype html public ""-//w3c//dtd xhtml 1.1//en"" "" http://www.w3.org/tr/xhtml11/dtd/xhtml11.dtd "">"
else
'http://qqface.downcodes.com/
response.contenttype="text/html"
xm="<!doctype html public ""-//w3c//dtd xhtml 1.0 strict//en"" "" http://www.w3.org/tr/xhtml1/dtd/xhtml1-strict.dtd "" >"
end if
%>
測試:用ie訪問查看原始碼可以看見輸出的是xhtml 1.0 strict。 ff或opera下方是xhtml1.1,不改也可以通過驗證,只不過會有一段警告訊息。