Version

Getting Started with WebCaptcha

The WebCaptcha™ component provides easy to use protection against automated form submissions. All you need to do to create a WebForm with an instance of WebCaptcha, is to drag and drop WebScriptManager and WebCaptcha components from Visual Studio Toolbox. The generated code should look like:

In HTML:

<ig:WebScriptManager ID="WebScriptManager1" runat="server">
</ig:WebScriptManager>
<ig:WebCaptcha ID="WebCaptcha1" runat="server" Width="250px">
</ig:WebCaptcha>
WebCaptcha_Getting_Started_With_WebCaptcha_01
Note
Note:

By dropping the WebCaptcha onto your form, the control automatically registers CaptchaImageHandler in the web.config file. The handler has the following definition:

<httpHandlers>
  <add path="WebCaptchaImage.axd" verb="GET,HEAD" type="Infragistics.Web.UI.EditorControls.CaptchaImageHandler"
validate="true" />
</httpHandlers>