Ignoring favicon.ico in ASP.NET MVC
I ran into a weird issue today while working on a new asp.net mvc app. Running in debug mode, I kept getting a "favicon.ico" as a querystring value, and this sometime thrown my code off. The quick solution is to add a line in the Global.asax to ignore it.
routes.IgnoreRoute("favicon.ico");
That should do it!