xhtml을 처리할 때 최대 호환성을 얻으려면 application/xhtml+xml을 Firefox, Safari, Opera 및 기타 표준 호환 브라우저로 보내고 text/html을 IE로 보내야 합니다.
프로그램 코드
<%dim xm
instr(request.servervariables("http_accept"), "application/xhtml+xml") > 0 또는 instr(request.servervariables("http_user_agent"), "w3c_validator") > 0인 경우
response.contenttype="application/xhtml+xml"
xm="<!doctype html 공개 ""-//w3c//dtd xhtml 1.1//en"" "" http://www.w3.org/tr/xhtml11/dtd/xhtml11.dtd "">"
또 다른
'http://qqface.downcodes.com/
response.contenttype="텍스트/html"
xm="<!doctype html 공개 ""-//w3c//dtd xhtml 1.0 strict//en"" "" http://www.w3.org/tr/xhtml1/dtd/xhtml1-strict.dtd "" >"
종료하면
%>
테스트: IE를 사용하여 소스 코드에 액세스하면 출력이 xhtml 1.0 strict임을 확인할 수 있습니다. ff 또는 Opera 아래의 xhtml1.1입니다. 변경하지 않고 확인을 통과할 수 있지만 경고 메시지가 표시됩니다.