博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SharePoint如何配置Ipad跳转等问题
阅读量:6413 次
发布时间:2019-06-23

本文共 1840 字,大约阅读时间需要 6 分钟。

如何配置Ipad跳转

Apple iPad 设备上不支持 SharePoint 标准视图。用户可以改用移动视图在 iPad 设备上查看 SharePoint 内容。默认情况下,iPad 用户被重定向到 SharePoint 网站的标准视图。这是因为 iPad 用户代理没有包含在浏览器定义文件 (compat.browser) 中。若要更改 iPad 用户的默认视图,您必须将 iPad 用户代理字符串添加到 compat.browser 文件中,并将 isMobileDevice 设置为 true。这会将 iPad 用户重定向到 SharePoint 网站的移动视图。

下面的示例演示可用于 iPad 设备的用户代理字符串。

<!-- iPad Safari Browser -->

<!-- sample UA "Mozilla/5.0 (iPad; U; CPU OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5" -->
<browser id="iPadSafari" parentID="AppleSafari">
<identification>
<userAgent match="iPad" />
<userAgent match="Mobile" />
</identification>
<capabilities>
<capability name="isMobileDevice" value="true" />
<capability name="canInitiateVoiceCall" value="true" />
<capability name="optimumPageWeight" value="1500" />
<capability name="requiresViewportMetaTag" value="true" />
<capability name="supportsTouchScreen" value="true" />
<capability name="telephoneNumberDetectionDisabled" value="true" />
</capabilities>
</browser>

有关如何更新 compat.browser 文件的详细信息,请参阅 中的 一节。有关如何结合使用 iPad 设备和 SharePoint 2010 产品的详细信息,请参阅 (。

The following XML needs to be added within <system.web> within the web.config file of the site:

<browserCaps>

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

 

如何禁用手机视图跳转

  • 如果你定制了手机页面,而不想用户访问之前原生的手机视图,你可以禁用原生的手机视图。命令如下:
  • Disable-SPFeature -Identity MobilityRedirect -Url

 

如何从SharePoint手机页面跳转到自定义页面

  • 1.在目录“C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\LAYOUTS\MOBILE”下找到“mbllists.aspx”和“mblwp.aspx”文件

    2.在这两个文件的“<script runat="server">”中均添加以下事件:

    protected void Page_load(object sender, EventArgs e)

    {

    Response.Redirect("~/_LAYOUTS/YourMobileHtml");

    }

转载地址:http://irbra.baihongyu.com/

你可能感兴趣的文章
Linux TTY、PTS、PTY详解
查看>>
java泛型中T、E、K、V、?等含义
查看>>
UITableView中使用reloadRowsAtIndexPaths会出现闪退的解决办法
查看>>
Banner无限轮播图
查看>>
Java 静态代理、Java动态代理、CGLIB动态代理
查看>>
zabbix监控memcached模板
查看>>
JavaScript中的对象
查看>>
asp判断接受的参数是否为纯数字
查看>>
Lua中的table函数库
查看>>
阿斯顿发生点
查看>>
Android 图片倒影效果源码
查看>>
HADOOP2.0,Exception java.lang.NoClassDefFoundError: org/apache/hadoop/mapreduce/v2/app/MRAppMaster
查看>>
Planning, Deploying, and Monitoring Mobility
查看>>
Win7 + VS2010 + Python2.7.5 安装 gevent
查看>>
pd 数据类型对照表
查看>>
@Transactional
查看>>
phpdoc
查看>>
webkit内核浏览器的CSS写法
查看>>
实例讲解活动目录域信任关系
查看>>
ActFramework中实现文件上传
查看>>