gpt4 book ai didi

c# - MSCaptcha Web.config httpHandler 错误

转载 作者:行者123 更新时间:2023-11-30 19:26:59 24 4
gpt4 key购买 nike

我想在我的项目中使用 Recaptcha,但我的 web.config 文件中存在以下问题。

<httpHandlers>
<add verb="GET" path="CaptchaImage.axd" type="MSCaptcha.CaptchaImageHandler, MSCaptcha" />
</httpHandlers>
<pages>
<controls>
<add tagPrefix="cc1" assembly="MSCaptcha" namespace="MSCaptcha" />
</controls>
</pages>

我的错误:

HTTP Error 500.23 - Internal Server Error

An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode.

Most likely causes:

This application defines configuration in the system.web/httpHandlers section.

最佳答案

看来您正在 IIS 7.0 或更高版本上以集成模式运行您的应用程序。

在集成模式下运行时,您应该像这样注册您的 HTTP 处理程序:

<configuration>
<system.web>
....
</system.web>
<system.webServer>
<handlers>
<add name="CAPTCHAHandler" verb="GET" path="CaptchaImage.axd" type="MSCaptcha.CaptchaImageHandler, MSCaptcha" />
</handlers>
</system.webServer>
</configuration>

问候,乌鲁斯

关于c# - MSCaptcha Web.config httpHandler 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20363064/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com