在视图中使用 MvcReCaptcha 库时出现问题
MvcReCaptcha 库看起来非常可靠,并且似乎得到了一些良好的开发人员采用,但是当我第一次尝试它时今天的某个时间,使用提供的 HTML 帮助程序,我的应用程序将无法运行。我的部分视图中的助手如下:
<fieldset>
<legend>3. Verify that you are a human.</legend>
@Html.GenerateCaptcha()
</fieldset>
我按照指示将命名空间包含在 web.config 中:
<pages>
<namespaces>
<add namespace="System.Web.Helpers" />
<add namespace="MvcReCaptcha.Helpers"/>
</namespaces>
</pages>
(为简洁起见,删除了其他命名空间)
并且我在 中定义了我的私钥和公钥应用程序设置
。除了我使用 Razor 之外,我看不出我与 CodePlex 页面 上的示例有何不同。谁能提供一些关于我可能做错了什么的见解?
The MvcReCaptcha library looks very solid, and appears to have some good developer adoption, but when I tried it for the first time today, using the supplied HTML helper, my app won't run. I have the helper in a partial view as follows:
<fieldset>
<legend>3. Verify that you are a human.</legend>
@Html.GenerateCaptcha()
</fieldset>
I have the namespace included in web.config as instructed:
<pages>
<namespaces>
<add namespace="System.Web.Helpers" />
<add namespace="MvcReCaptcha.Helpers"/>
</namespaces>
</pages>
(Other namespaces removed for brevity)
And I have my private and public keys defined in appSettings
. I can see no way that I deviate from the examples on the CodePlex page except that I am using Razor. Can anyone offer some insight into what I may be doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 Razor,则需要将
MvcReCaptcha.Helpers
命名空间添加到~/Views/web.config
的
部分文件而不是~/web.config
中的文件。If you are using Razor you need to add the
MvcReCaptcha.Helpers
namespace to the<namespaces>
section of~/Views/web.config
file and not the one in~/web.config
.