Q: I am trying to access the Site Settings of my SharePoint site, but I get a File Not Found error, although the rest of SharePoint works great. What should I do? A: I recently deployed SharePoint Foundation to a server to run the System Center Servi…
博客地址:http://blog.csdn.net/FoxDave SharePoint网站中的语言设置:"Language Settings",可以用CSOM通过Site的一些属性去设置它. Default Language部分: The default language of the site is specified when the site is first created. 对应的属性为:web.Language 整型,无法更改,网站一旦创建默认语言就无法再更新,可以通过…
转:http://www.wcode.net/plus/view.php?aid=1582071 SharePoint一个很重要的概念就是Site Pages和Application Pages.接触SharePoint是在SharePoint 2007,当时就有这个概念.如有误解之处,请大家多多指教. Site Pages是可以通过SharePoint Designer来编辑的页面,它的增加.删除.修改并不能在物理文件系统中跟踪到,而是在Content DB中. Site Pages 两个重要…
有时候我们可能找不到Navigation标签, 仅仅在Look and Feel下面看到"Quick launch" 如何才能找到我们想要的"Navigation"呢,我们需要激活SharePoint Server Publishing Infrastructure". 步骤: 打开你的站点,并且在"Site Actions" 下进去"Site Settings" 在“Site Collection Administ…
下面在Site Settings页 >Site Administration里添加一个Ruby Setting 超链接,点击进入到rubySetting.aspx 1.在SharePoint project里建一个Empty Element,会立即在feature下面生成一个feature,默认Scope是Web 2.在Elements.xml里修改如下 <?xml version="1.0" encoding="utf-8"?><Eleme…
通过PowerShell创建SharePoint Site Collection,代码如下: Add-PSSnapin microsoft.sharepoint.powershell function CreateTeamSite() { $webApps = Get-SPWebApplication $webAppsUrl = $webApps.Url ) { Write-Host "You have only one web application:" Write-Host $we…
由于经常混迹于MSDN Azure论坛,少不了和一些外国朋友打交道.有的时候觉得还是有一些东西可以写出来与外国友人们分享下的, 所以就用一个开源项目建了一个英文blog项目. 在发布的时候,首选的就是Azure web site,考虑因素如下: 1 项目不是自己做的,修改起来比较麻烦. 2 平常就只需要发发blog,不用做什么代码更新,没必要full control. 所以就忽略掉了VM 与 cloud service. 首先就是要发布一个网站到Azure 上了.这个非常简单,Azure 官方文…
博客地址:http://blog.csdn.net/FoxDave SharePoint网站中的区域设置:"Regional Settings",可以用CSOM通过Site的一些属性去设置它. Time Zone部分: Specify the standard time zone. 对应的属性为:web.RegionalSettings.TimeZone TimeZone类型属性,示例如下: web.RegionalSettings.TimeZone = web.RegionalSe…
<Windows Azure Platform 系列文章目录> 我们知道,Azure Web Site (改名为Azure Web App)默认是可以保留Session的.Azure Web App的架构图如下图: 上图中,我们可以观察到,Internet请求在发送到Azure Web App之前,会经过Frontend Server,也就是IIS ARR Server.IIS ARR基于Affinity Cookie,可以把请求发送到对应的某一台Azure Web App Server上.通…
转载请注明出自天外归云的博客园:http://www.cnblogs.com/LanTianYou/ 对CSOM(Not SSOM) Site Policy & Expiration Email的API的调用过程进行封装,做成tool,界面如下: 代码如下: using System; using System.Windows.Forms; using Microsoft.SharePoint.Client; using Microsoft.SharePoint.Client.Informati…