asp.net mvC语言 调用Sitecore API时的问题



我使用mvc 5 captcha在我的sitecore 8.1基于web应用程序。但加固后,验证码就看不见了。有人遇到过这样的问题吗?请帮助。

如果验证码图像没有显示在WFFM表单上。我想,在您的操作之后,验证码所需的配置设置将不再存在。

您需要确保在web中存在以下设置。在节点配置/系统下配置。webServer/handers

<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" />

请参阅此链接了解更多信息或如何在IIs 6中完成

最新更新