Wednesday 14 March 2018

MS Captcha not working with IIS

////////////////////
Step 1. Create Application pool for project and set -

Managed Pipeline Mode - Classic

Step 2. Set Handler in web.config file inside the system.web -

<system.web>   
    <httpHandlers>
      <add verb="GET" path="CaptchaImage.axd" type="MSCaptcha.CaptchaImageHandler, MSCaptcha"/>

</system.web>    

Step 3. Set allow for the users inside the location tag 

<location path="CaptchaImage.axd">
    <system.web>
      <authorization>
        <allow users="*" />
      </authorization>
    </system.web>

  </location>


No comments:

Post a Comment

Excel Sort values in ascending order using function TEXTJOIN

 Excel ::  Text ::  1,3,5,2,9,5,11 Result :: 1,2,3,5,5,9,11 Formula ::     TEXTJOIN ( ",",1,SORT(MID(SUBSTITUTE( A1 ,","...