Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

NoCaptcha ReCaptcha/Bootstrapvalidator

Status
Not open for further replies.

Swi

Programmer
Feb 4, 2002
1,963
US
Has anyone had any luck implementing NoCaptcha ReCaptcha with the Bootstrapvalidator using Classic ASP?

Thanks.

Swi
 
I got this working posting to another page and then verifying the Captcha result (g-recaptcha-response).

However, I was hoping to do this without posting to another form for the verification as BootStrap allows me to verify all other user entered data before I post to see if the person is an authenticated user or if they already registered against my DB.

Thanks.

Swi
 
If it works when pointed to a different URL then it will also work on the same URL. You simply have to check if the form HAS been submitted before the verification code is run, if not ... display the form.


Code:
If request.form('submit') then
     'verify code here
else
     ' display form
end if


Chris.

Indifference will be the downfall of mankind, but who cares?
Time flies like an arrow, however, fruit flies like a banana.
Webmaster Forum
 
Ok, but is there a way to do this right in Bootstrapvalidator itself.

I have some boostrapvalidator code that validates the form before the form is submitted.

Code:
<script>
  $(document).ready(function() {
    $('#registered').bootstrapValidator({
        container: '#messages',
        feedbackIcons: {
            valid: 'glyphicon glyphicon-ok',
            invalid: 'glyphicon glyphicon-remove',
            validating: 'glyphicon glyphicon-refresh'
        },
        fields: {
            firstname: {
                validators: {
                    notEmpty: {
                        message: 'First Name is required and cannot be empty'
                    },
                    stringLength: {
                        max: 30,
                        message: 'First name cannot be longer than 30 characters'
                    }
                }
            },
            lastname: {
                validators: {
                    notEmpty: {
                        message: 'Last Name is required and cannot be empty'
                    },
                    stringLength: {
                        max: 30,
                        message: 'Last name cannot be longer than 30 characters'
                    }
                }
            },
            city: {
                validators: {
                    notEmpty: {
                        message: 'City is required and cannot be empty'
                    },
                    stringLength: {
                        max: 30,
                        message: 'City cannot be longer than 30 characters'
                    }
                }
            },
            state: {
                validators: {
                    notEmpty: {
                        message: 'State is required and cannot be empty'
                    }
                },
            },
            zip: {
                validators: {
                    zipCode: {
                        country: 'US',
                        message: 'The zip is not valid US postal code'
                    },
                    notEmpty: {
                        message: 'Zip is required and cannot be empty'
                    },
                    stringLength: {
                        max: 10,
                        message: 'Zip cannot be longer than 10 characters'
                    }
                },
            },
            mobile: {
                validators: {
                    phone: {
                        country: 'US',
                        message: 'Mobile Phone is not valid US phone number'
                    },
                    notEmpty: {
                        message: 'Mobile Phone is required and cannot be empty'
                    },
                    stringLength: {
                        max: 12,
                        message: 'Mobile Phone cannot be longer than 12 characters'
                    }
                }
            },
            home: {
                validators: {
                    phone: {
                        country: 'US',
                        message: 'Home Phone is not valid US phone number'
                    },
                    stringLength: {
                        max: 12,
                        message: 'Home Phone cannot be longer than 12 characters'
                    }
                }
            },
            password: {
                validators: {
                    notEmpty: {
                        message: 'Password is required and cannot be empty'
                    },
                    stringLength: {
                        max: 8,
                        message: 'Password cannot be longer than 8 characters'
                    }
                }
            },
            confirmpassword: {
                validators: {
                    identical: {
                        field: 'password',
                        message: 'The password and the confirmation are not the same'
                    },
                    notEmpty: {
                        message: 'Confirm Password is required and cannot be empty'
                    },
                    stringLength: {
                        max: 8,
                        message: 'Confirm Password cannot be longer than 8 characters'
                    }
                }
            }
        }
    });

If all validates it lets me post to the next page and this is where I perform the ReCaptcha lookup:

Code:
Dim recaptcha_secret
Dim objXML
recaptcha_secret = "XXXXXXXXXXXXXXXXXXXXXXXX"

Dim sendstring
sendstring = _
   "[URL unfurl="true"]https://www.google.com/recaptcha/api/siteverify?"[/URL] & _
   "secret=" & recaptcha_secret & _
   "&response=" & request.form("g-recaptcha-response")

Set objXML = Server.CreateObject("MSXML2.ServerXMLHTTP")
objXML.Open "GET", sendstring , false

objXML.Send()

if instr(objXML.responseText,"false") > 0 then
        response.redirect "/register.asp?badlogin=4"
end if

%>

Do you know if I can do this in bootstrapvalidator instead of posting to another page? When I post to the other page I also hit the database for authentication.

Thanks.

Swi
 
Ok, but is there a way to do this right in Bootstrapvalidator itself.

Probably, but that would be client side javascript (forum216) not ASP.

Chris.

Indifference will be the downfall of mankind, but who cares?
Time flies like an arrow, however, fruit flies like a banana.
Webmaster Forum
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top