温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:Vb.net验证码控件及Demo源码
当前文件:
VBCaptcha/WebSiteCaptcha/Web.Config,打开代码结构图
VBCaptcha/WebSiteCaptcha/Web.Config,打开代码结构图1<?xml version="1.0"?> 2
<configuration> 3
<appSettings/> 4
<connectionStrings/> 5
<system.web> 6
<!-- 7
8
** NOTE ** 9
This httpHandler reference is REQUIRED for CaptchaControl to function; 10
it allows us to dynamically generate the Captcha images and send them to the browser 11
without relying on any physical image files on the webserver filesystem. 12
13
See CaptchaImageHandler for more detail. 14
15
--> 16
<httpHandlers> 17
<add verb="GET" path="CaptchaImage.aspx" type="WebControlCaptcha.CaptchaImageHandler, WebControlCaptcha"/> 18
</httpHandlers> 19
<compilation debug="true"> 20
<assemblies> 21
<add assembly="System.Management, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/></assemblies></compilation> 22
<authentication mode="Windows"/> 23
</system.web> 24
</configuration> 25


