Pages

Search This Blog

Tuesday, April 10, 2012

How to disable mobile views in SharePoint 2010?

It is as simple as adding a new configuration block in web.config of your application

<browserCaps>      <result type="System.Web.Mobile.MobileCapabilities, System.Web.Mobile, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>      <filter>isMobileDevice=false</filter>    </browserCaps>

Add this setting block anywhere between system.web node.



No comments:

Post a Comment