Reputation: 2781
I'm trying to detect from server-side in an MVC4 Website the Internet Explorer 9, but Request.Browser.Browser returns Mozilla and Request.Browser.MajorVersion returns 0.
Any idea how can I achieve this?
Thanks.
Upvotes: 0
Views: 2278
Reputation: 144
Request.Browser
You have all sorts of browser data available on this object, see this Browser Capabilities MSDN page for more details.
Upvotes: 0