Waleed Eissa
Waleed Eissa

Reputation: 10513

Spam filtering for ASP.NET

Has anybody come across an elegant and efficient .NET spam filtering component that can be used in ASP.NET applications? I want something that I can pass a string and returns to me a percentage of how likely it could be spam, does such a thing exist?

Upvotes: 3

Views: 884

Answers (1)

Dave Ward
Dave Ward

Reputation: 60580

Akismet is great.

This provides a .NET API to the Akismet service: http://www.codeplex.com/AkismetApi

Upvotes: 6

Related Questions