首页 > 学院 > 开发设计 > 正文

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

2019-11-17 04:12:33
字体:
来源:转载
供稿:网友

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


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表