我使用服务器端脚本 (.asp) 即时生成验证码图像(作为 .bmp)。
它包含在一个页面中,如下所示:
<iframe id="commentCaptcha" height="20px" width="50px" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" src="/inc_captcha.asp">
一切正常。
问题/问题是我在 google chrome 控制台中收到以下警告:
Resource interpreted as Document but transferred with MIME type image/bmp: "/inc_captcha.asp".
以下是从服务器返回的实际原始标头:
HTTP/1.1 200 OK
Cache-Control: no-cache
Pragma: no-cache
Content-Type: image/bmp
Expires: Sun, 13 Jan 2013 03:11:36 GMT
Server: Microsoft-IIS/7.5
Date: Sun, 13 Jan 2013 03:12:36 GMT
Connection: close
有什么办法可以阻止这个警告吗?