welcome to Qijie's Blog 薛其杰
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 22 下一页
摘要: 今天我头脑一热, 把安装在WS 2008 R2上的有Stand-alone SharePoint Server 2010的机器重命名了一下, 结果SharePoint Central Admin都进不去了, 提示"" cannot connect to configuration database".然后想使用Rename-SPServer -Identity oldservername -name newservername 来更正ServerName, 发现提示 The farm is unavailable.最后是使用stsadm解决的stsadm -o r 阅读全文
posted @ 2013-08-01 13:42 零点零一 阅读(276) 评论(0) 推荐(0)
摘要: 摘要: SharePoint 2010之后呢, 建立一个 Team Site会有两个 default page, 分别是 Sitepages/home.aspx and default.aspx. 这两个是不一样的, 我遇到过一个问题是, 每当我输入webapplication的 url 之后, 地址会自动定位到SitePages/home.aspx, 由于某些原因, 我的这个页面是不能显示了。 但是default.aspx还是可以正常显示的,所以我通过使用powershell把默认page 修改成了default.aspx.正文:Via Power Shell$site = Get-SPSi 阅读全文
posted @ 2013-07-31 15:15 零点零一 阅读(434) 评论(0) 推荐(0)
摘要: Installed: SharePoint Server 2010 for Internet Enterprise Beta (x64) On: Windows Server 2008 Standard (x64) on 64 bit hardwareAttempts to access the Central Administration console led to IIS returning 503. The service is unavailableAnd this error was found in the Application logThe Module DLL 'C 阅读全文
posted @ 2013-07-31 11:50 零点零一 阅读(421) 评论(0) 推荐(0)
摘要: 摘要:正文:1.引入XDocument的命名空间using System.Xml.Linq;2. List to XML doc //List to XML public XDocument InitDownloadData(List item) { XElement courseItemElement = new XElement("Courses", item.Select(c => new XElement("Course", new XAttribute(... 阅读全文
posted @ 2013-07-31 09:32 零点零一 阅读(1163) 评论(0) 推荐(0)
摘要: XAML: ... 阅读全文
posted @ 2013-07-30 11:58 零点零一 阅读(4367) 评论(0) 推荐(0)
摘要: 设计一个Popup window, 在其中实现分享到Facebook 和Twitter 功能。popup window 名称为 ShareView.xaml, 代码如下: ... 阅读全文
posted @ 2013-07-30 08:58 零点零一 阅读(301) 评论(0) 推荐(0)
摘要: 把List绑定到ListBox.前台绑定: ... 阅读全文
posted @ 2013-07-29 17:49 零点零一 阅读(2234) 评论(0) 推荐(0)
摘要: 将Rss内容读取到Listbox control中, 然后实现按照标题或发布日期进行排序。 private void ListItemSort(string type) { if (type == "title") { var list = ItemBox.Items.Cast().OrderBy(item => item.Title.Text).ToList(); if (ItemBox.ItemsSource != null) ... 阅读全文
posted @ 2013-07-17 17:26 零点零一 阅读(660) 评论(0) 推荐(0)
摘要: SharePoint PowerShell在SharePoint Product列表里边,然后以管理员权限启动。1. 添加Solution 到 SharePoint Farm.Add-SPSolution -LiteralPath "c:\ilt.wsp"2.获取已添加到SharePoint Farm的Solutions.Get-SPSolution3. 部署Solution 到SharePoint。部署Solution到SharePoint Farm中:Install-SPSolution -Identity ilt.wsp -GACDeploymentpossible 阅读全文
posted @ 2013-07-12 18:24 零点零一 阅读(3299) 评论(1) 推荐(1)
摘要: 在SharePoint Library中的文档, 如word, excel等, 文档有两种打开方式, 一种是Viewer in Browser, 一种是Open in Client application。 我们可以设置文档的默认打开方式。1. 打开 Document Library, 如 ChiLe.2. 选择Library > Library Settings.3. 在General Settings下,选择Advanced settings.4. 在Openning Documents in the Browser中选择默认打开方式。 阅读全文
posted @ 2013-07-04 17:13 零点零一 阅读(802) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 22 下一页