I'm building a site in ASP.NET MVC/C#. I base most of my controllers off of a base controller. In that base controller I handle quite a few common tasks every controller needs to do.
One thing I want to add is a check for mobile browser. I've found some recommendations around SO, but they seem to be outdated.
What's a reliable way to check for mobile browser in C# (ASP.NET MVC)? (note: I already use stylesheet media queries for a responsive UI, but I need a way to detect mobile browser server side)
http://stackoverflow.com/questions/5233090/how-do-i-detect-a-mobile-browser-in-a-net-mvc3-application you can check this. – hackp0int Dec 26 '11 at 05:19