在视图中使用 MvcReCaptcha 库时出现问题

发布于 2024-11-02 02:07:32 字数 782 浏览 1 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凤舞天涯 2024-11-09 02:07:32

如果您使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文