我将我的 MVC3 应用程序从 aspx 转换为 Razor,我正在使用 Captcha;在我使用的 aspx 中:
<%@ Register TagPrefix="cc1" Namespace="WebControlCaptcha" Assembly="WebControlCaptcha" %>
在 Razor 项目中,我将寄存器移至 web.config:
<system.web>
<pages>
<controls>
<add assembly="WebControlCaptcha" namespace="WebControlCaptcha" tagPrefix="cc1" />
</controls>
</pages>
</system.web>
不幸的是,验证码图像没有显示,任何建议。谢谢你。