Recaptcha 未在灯箱中呈现
我已按照本网站上的说明实施了 reCAPTCHA:
http://devlicio.us/blogs/derik_whittaker/archive/2008/12/02/using-recaptcha-with-asp-net-mvc.aspx
但是我无法获取它在我的灯箱上渲染。当我检查萤火虫时,它呈现如下。
<noscript> <iframe src="http://www.google.com/recaptcha/api/noscript?k=6Lctg74SAAAAADV4UAfyRdEUdZi_FGc4PCqA7LEn" width="500" height="300" frameborder="0"> </iframe><br /><textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea><input name="recaptcha_response_field" value="manual_challenge" type="hidden" /> </noscript>
请注意,当我查看萤火虫时 <和>显示为文本“<”和“>” (没有空格)
如果需要任何其他信息来帮助解决此问题,请告诉我。
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如何将 Html Helper 的输出分配给 fancybox?你能发布你的代码吗?这只是一个猜测,但如果您使用
<%: Html.GenerateCaptcha() %>
语法,请尝试<%= Html.GenerateCaptcha()
%>句法。How are you assigning the output of the Html Helper to the fancybox? Could you post your code? It's just a guess, but if are you using the
<%: Html.GenerateCaptcha() %>
syntax, try the<%= Html.GenerateCaptcha()
%> syntax.