当前位置导航:炫浪网>>网络学院>>网页制作>>ASP教程

为XHTML发送正确的MIME类型的ASP代码

处理 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.knowsky.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,不改也可以通过验证,只不过会有一段警告信息。

相关内容
赞助商链接