アプリケーションのページの部分ビューにキャプチャを実装しようとしています。コントロールとして 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
}%>