spam protection not generating
See original GitHub issueI have implemented your spam protection to my asp.net core 3.1 project but it’s not building the <input type="hidden" name="SpamProtectionTimeStamp" value="1592192250" /> as it does on your site.
I’m not sure how to provide a bug as nothing shows up on my contact for but I am mirroring what’s going on in your MVCBlog.
Do you know of something else I could try and look at? perhaps I’m missing something?
I’m using both Spam files in a /Helpers directory in a single project so my _ViewImports.cshtml file looks like this: @addTagHelper MySite.Helpers.SpamProtectionTagHelper, MySite
Issue Analytics
- State:
 - Created 3 years ago
 - Comments:5 (2 by maintainers)
 
Top Results From Across the Web
7 Reasons Why Your Gmail Spam Filter Isn't Working
Gmail's spam filter is powerful but it can also be overactive, or even miss some spam emails. Here's the reasons why this happened...
Read more >Customize spam filter settings in Google Workspace
Check the Bypass spam filters for messages received from addresses or domains within these approved senders lists box. Click Use existing list or...
Read more >Configure spam filter policies - Office 365
Admins can learn how to view, create, modify, and delete anti-spam policies in Exchange Online Protection (EOP).
Read more >How to enable spam call filtering on your Android phone
Open your device's Phone app. 2. Tap More, then tap Settings, and then Caller ID & spam.
Read more >Protect your site from user generated spam
If you plan on not monitoring your forum going forward and users are no longer interacting with it, turning off posting completely may...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Thanks Daniel, I was looking at the “method=post” after the page loaded and not while at rest. Many thanks for the code, it’s helped me a lot on my Diners, Drive-ins and Dives website https://www.flavortownusa.com where I get a ton of spam submissions every day.
I have sent you a PR (https://github.com/RickTheHat/SpamProtectionDemo/pull/1).
The spam protection is only active for POST forms. The
method="post"attribute was missing in your view.