Disable aspnet.friendlyurl's mobile redirect for tablets
asp.net, mobile, tablet
Solution
There is no setting to turn this off, but you can disable this by deleting the Site.Mobile.Master and ViewSwitcher files
The following files are no longer needed:
Site.Mobile.Master - Site.Mobile.Master.cs - Site.Mobile.Master.designer.cs
ViewSwitcher - ViewSwitcher.cs - ViewSwitcher.ascx.cs
Thanks to @fortboise for simplifying my answer
Problem
My Website is responsive with Twitter Bootstrap and the desktop pages are designed for tablets and desktop. aspnet.friendlyUrls considers tablet devices as mobile and sends them to the ".Mobile.aspx" equivalent. How can I disable this behavior and keep tablets on the desktop pages? 2 Weeks later and still no awnser or even a comment? Am i the only one who actually uses aspnet.FriendlyUrls even if it's distributed in new VS2013 Asp.Net projects by default?