验证码图像在 Firefox 中显示为奇怪的符号
我在 jsp 中使用 this 验证码。我使用 iframe 通过以下代码调用 jsp:
<iframe id="captchaframe" align="center" name="captchaframe" src="captcha.jsp" width="120" height="40" scrolling="no"
frameborder="0" marginheight="-10" marginwidth="-10"/></iframe>
使用资源管理器,一切都像这张图片一样工作正常:
但在 Firefox 中,字符变成了完全像下图这样的东西:
我该如何解决这个问题?
I am using this captcha code in a jsp. I call the jsp by the following code using iframe:
<iframe id="captchaframe" align="center" name="captchaframe" src="captcha.jsp" width="120" height="40" scrolling="no"
frameborder="0" marginheight="-10" marginwidth="-10"/></iframe>
With explorer everything works pretty as in this picture:
But in Firefox the characters become something else entirely like in this picture:
How can I fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜 Firefox 无法将您的 jsp 文件的输出识别为图像。您是否将 mime content-type 设置为 image?
http://www.w3.org/Protocols/rfc1341/4_Content-Type.html
I guess Firefox doesn't recognise the output of your jsp file as image. Did you set mime content-type to image?
http://www.w3.org/Protocols/rfc1341/4_Content-Type.html