How do I enable reCAPTCHA to protect my website from fraud and abuse from bots

Follow

We have a solution for that in place to enable it for the self-registration page that will prevent bots from ceating fake accounts.  Just follow these instructions:

  1. Enable reCAPTCHA 3.0 type in your Admin Console: https://www.google.com/recaptcha/about/
  2. Take the code below and replace your site_key and secret_key from above and drop it in the head of your PrintNowDisplay.Master page.
  3. You can then delete those bot accounts and that should stop it. 

Inside the head tag of PrintNowDisplay.master file:

<script runat="server">
    Protected Sub Recaptcha(sender As Object, e As Printnow.RecaptchaEventArgs) Handles Me.NeedRecaptchaData
        e.SiteKey = "site_key"
        e.SecretKey = "secret_key"
    End Sub

0 out of 0 found this helpful

Comments

0 comments

Article is closed for comments.