我在基于sitecore 8.1的网络应用程序中使用了mvc 5验证码。但强化后验证码不可见。任何人都面临这种问题。请帮忙。
答案 0 :(得分:0)
如果验证码图像未显示在WFFM表单上。我想在你的行动之后,Captcha所需的配置设置不再存在。
如果您使用的是iis7或更高版本,则需要确保在node configuration / system.webServer / handers下的web.config中存在以下设置
<add name="CaptchaImage" verb="*" path="CaptchaImage.axd" type="Sitecore.Form.Core.Pipeline.RequestProcessor.CaptchaResolver, Sitecore.Forms.Core" />
<add name="CaptchaAudio" verb="*" path="CaptchaAudio.axd" type="Sitecore.Form.Core.Pipeline.RequestProcessor.CaptchaResolver, Sitecore.Forms.Core" />
请参阅此link for more informatio n或如何在IIs 6中完成