10 2012 档案
SharePoint Security and Permission System Overview
摘要:SharePoint Permission and Security MechanismsFrom time to time, our customers ask us about how SharePoint security and permission features work, and how should they be utilized. In this post we try to walkthroughthe basic permission and security features of SharePoint. This post is not intended to b 阅读全文
posted @ 2012-10-31 16:45 ilawrence 阅读(673) 评论(0) 推荐(0)
PowerShell Advance Usage
摘要:高级用法:一、创建文件夹与子文件夹 先写一个创建文件夹的公用方法$url代表文件夹的路径(即:DocLib/XX/)$list代表对应的列表,$name 文件夹的名字return 的是一个文件夹对象,在下面的操作过程中会用到。# Add ItemFunction AddItemFolder($url,$list,$name){ Write-host ".............Starting create " $name " Folder,please waiting............." -foregroundcolor blue $folde 阅读全文
posted @ 2012-10-31 16:30 ilawrence 阅读(218) 评论(0) 推荐(0)
SharePoint2010 PowerShell backup restore deploy .WSP
摘要:backup# Check to ensure Microsoft.SharePoint.PowerShell is loaded$Snapin = get-PSSnapin | Where-Object {$_.Name -eq 'Microsoft.SharePoint.Powershell'}if($Snapin -eq $null){ Write-host "Loading SharePoint Powershell Snapin" Add-PSSnapin "Microsoft.SharePoint.Powershell"}$s 阅读全文
posted @ 2012-10-31 16:28 ilawrence 阅读(245) 评论(0) 推荐(0)
http://www.sympraxisconsulting.com/Demos/default.aspx spservice
摘要:http://www.sympraxisconsulting.com/Demos/default.aspxhttp://sympmarc.com/2012/10/15/spservices-getlistitems-generator-demo-page/ SPServices GetListItems Generator Demo Pagehttp://www.itidea.nl/index.php/jquery-spservice-get-list-guid/https://www.nothingbutsharepoint.com/sites/eusp/Pages/real-life-ex 阅读全文
posted @ 2012-10-30 15:02 ilawrence 阅读(136) 评论(0) 推荐(0)
Using jQuery and SPServices to Display List Items
摘要:Using jQuery and SPServices to Display List ItemsI had an interesting challenge recently that I turned to Marc Anderson’s wonderful SPServices project for. If you haven’t already seen or used SPServices, please do. It’s a jQuery library that does primarily two things. First, it wraps up all of the S 阅读全文
posted @ 2012-10-30 10:26 ilawrence 阅读(1089) 评论(0) 推荐(0)
difference between SPListItem.SystemUpdate and SPListItem.Update Method
摘要:http://www.codegain.com/articles/sharepoint/developmentprogramming/what-is-the-difference-between-splistitem-systemupdate-and-splistitem-update-method.aspxSPListItem.SystemUpdate:Updates the database(Sharepoint list) with changes that are made to the list item, without effecting changes in the Modif 阅读全文
posted @ 2012-10-29 22:56 ilawrence 阅读(232) 评论(0) 推荐(0)
Disable Event Receivers During an Update
摘要:How to disabling event firing in SharePoint 2010 Today, I tested whether event receiver fires or not when I use SPListItem's Update methods.The results are here.Methods event firingUpdate() firedSystemUpdate() firedSystemUpdate(false) firedUpdateOverwriteVersion() firedAll... 阅读全文
posted @ 2012-10-29 22:31 ilawrence 阅读(288) 评论(0) 推荐(0)
SharePoint
摘要:Articles about SharePoint.It seems that SharePoint's popular in US but not in China.I wanna collect useful articles here for search later on. 阅读全文
posted @ 2012-10-27 00:26 ilawrence 阅读(347) 评论(0) 推荐(0)
.Net PostBack mechanism
摘要:well-known mechanism 阅读全文
posted @ 2012-10-26 18:34 ilawrence 阅读(130) 评论(2) 推荐(0)
System.Array.IndexOf
摘要:Array.IndexOf Methodhttp://msdn.microsoft.com/en-us/library/system.array.indexof.aspx.NET Framework 4.5Returns the index of the first occurrence of a value in a one-dimensionalArrayor in a portion of theArray.This member is overloaded. For complete information about this member, including syntax, us 阅读全文
posted @ 2012-10-26 12:27 ilawrence 阅读(127) 评论(0) 推荐(0)
Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack.
摘要:http://social.msdn.microsoft.com/Forums/en-US/vsdebug/thread/817776da-13da-43f5-a189-1727ce4f3b6b/http://support.microsoft.com/kb/312629/en-usPRB: ThreadAbortException Occurs If You Use Response.End, Response.Redirect, or Server.TransferArticle ID: 312629 - View products that this article applies to 阅读全文
posted @ 2012-10-26 09:49 ilawrence 阅读(406) 评论(0) 推荐(0)