Asp.net Request.Browser.Crawler - Dynamic Crawler List? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T17:33:27Zhttp://stackoverflow.com/feeds/question/431765http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/431765/asp-net-request-browser-crawler-dynamic-crawler-list2Asp.net Request.Browser.Crawler - Dynamic Crawler List?Click Ok2009-01-10T21:10:08Z2009-01-10T23:51:42Z
<p>I learned Why Request.Browser.Crawler is Always False in C# (<a href="http://www.digcode.com/default.aspx?page=ed51cde3-d979-4daf-afae-fa6192562ea9&article=bc3a7a4f-f53e-4f88-8e9c-c9337f6c05a0" rel="nofollow">http://www.digcode.com/default.aspx?page=ed51cde3-d979-4daf-afae-fa6192562ea9&article=bc3a7a4f-f53e-4f88-8e9c-c9337f6c05a0</a>).</p>
<p>Does anyone uses some method to dynamically update the Crawler's list, so Request.Browser.Crawler will be really useful?</p>
http://stackoverflow.com/questions/431765/asp-net-request-browser-crawler-dynamic-crawler-list/431820#4318200Answer by splattne for Asp.net Request.Browser.Crawler - Dynamic Crawler List?splattne2009-01-10T21:40:48Z2009-01-10T21:40:48Z<p>You could check (regex) against <code>Request.UserAgent</code>.</p>
<p>Peter Bromberg wrote a nice article about writing an <a href="http://www.eggheadcafe.com/tutorials/aspnet/a988f8c3-f69e-4ad2-a2e9-f9e01867769c/aspnet-request-logger-an.aspx" rel="nofollow">ASP.NET Request Logger and Crawler Killer</a> in ASP.NET.</p>
<p>Here is the method he uses in his <code>Logger</code> class:</p>
<pre><code>public static bool IsCrawler(HttpRequest request)
{
// set next line to "bool isCrawler = false; to use this to deny certain bots
bool isCrawler = request.Browser.Crawler;
// Microsoft doesn't properly detect several crawlers
if (!isCrawler)
{
// put any additional known crawlers in the Regex below
// you can also use this list to deny certain bots instead, if desired:
// just set bool isCrawler = false; for first line in method
// and only have the ones you want to deny in the following Regex list
Regex regEx = new Regex("Slurp|slurp|ask|Ask|Teoma|teoma");
isCrawler = regEx.Match(request.UserAgent).Success;
}
return isCrawler;
}
</code></pre>
http://stackoverflow.com/questions/431765/asp-net-request-browser-crawler-dynamic-crawler-list/431991#4319913Answer by David Thomas Garcia for Asp.net Request.Browser.Crawler - Dynamic Crawler List?David Thomas Garcia2009-01-10T23:51:42Z2009-01-10T23:51:42Z<p>I've been happy the the results supplied by <a href="http://owenbrady.net/browsercaps/" rel="nofollow">Ocean's Browsercaps</a>. It supports crawlers that Microsoft's config files has not bothered detecting. It will even parse out what version of the crawler is on your site, not that I really need that level of detail.</p>