我正在尝试在我的应用程序中页面的部分视图上实现验证码。我通过 web.config 将验证码作为控件进行引用。我使用了这个论坛帖子中的 GenericHandler 和 Class 文件:http ://forums.asp.net/t/1871186.aspx/1
如果我使用简单的输入标签,如何引用用户的输入?我应该改用 HtmlHelper 吗?
<div class="captcha">
<rhcap:Captcha ID="Captcha1" runat="server"></rhcap:Captcha>
<input type="text" id="UserCaptchaText"><input/>
<%= Html.TextAreaFor(m => m.UserCaptcha) %>
</div>
<%if(Captcha1.Text != /* How can get the users input here?*/ ) {
//display error
}else{
//proceed
}%>