<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SharePoint @ Big Scholar</title>
	<atom:link href="http://www.bigscholar.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bigscholar.com</link>
	<description>Developing, Configuring and Designing in SharePoint</description>
	<lastBuildDate>Thu, 05 Jan 2012 23:19:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Check if user is in a SharePoint or AD group</title>
		<link>http://www.bigscholar.com/2012/01/06/check-if-user-is-in-a-sharepoint-or-ad-group/</link>
		<comments>http://www.bigscholar.com/2012/01/06/check-if-user-is-in-a-sharepoint-or-ad-group/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 23:19:45 +0000</pubDate>
		<dc:creator>Wei</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Active Directory]]></category>

		<guid isPermaLink="false">http://www.bigscholar.com/?p=221</guid>
		<description><![CDATA[To check if a user is in a SharePoint Group (which also checks if the user is in an AD Group within that SharePoint group), use the following code:  using System.DirectoryServices.AccountManagement;         public bool IsUserInSharePointGroup(string webUrl, string groupName, string username)         {             bool userIsInGroup = false;             SPSecurity.RunWithElevatedPrivileges(delegate             {                 try                 { [...]]]></description>
		<wfw:commentRss>http://www.bigscholar.com/2012/01/06/check-if-user-is-in-a-sharepoint-or-ad-group/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extracting attachments from SP List (Discussion Board)</title>
		<link>http://www.bigscholar.com/2011/12/08/extracting-attachments-from-sp-list-discussion-board/</link>
		<comments>http://www.bigscholar.com/2011/12/08/extracting-attachments-from-sp-list-discussion-board/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 00:07:31 +0000</pubDate>
		<dc:creator>Wei</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[SharePoint Discussion Board]]></category>
		<category><![CDATA[SharePoint Lists]]></category>

		<guid isPermaLink="false">http://www.bigscholar.com/?p=217</guid>
		<description><![CDATA[There is a slight difference to looping through discussion board items as compared to standard list items. The main difference is having to use SPList.Folders and not SPList.Items As a result of that, extracting any attachments to the SPList.Folders is not very obvious. I had been trying to get the attachment as an SPFile object [...]]]></description>
		<wfw:commentRss>http://www.bigscholar.com/2011/12/08/extracting-attachments-from-sp-list-discussion-board/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Allowing SharePoint to execute inline code in .aspx files</title>
		<link>http://www.bigscholar.com/2011/11/24/allowing-sharepoint-to-execute-inline-code-in-aspx-files/</link>
		<comments>http://www.bigscholar.com/2011/11/24/allowing-sharepoint-to-execute-inline-code-in-aspx-files/#comments</comments>
		<pubDate>Thu, 24 Nov 2011 03:25:05 +0000</pubDate>
		<dc:creator>Wei</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[.aspx]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.bigscholar.com/?p=214</guid>
		<description><![CDATA[If you try to upload an aspx file with inline code in it, SharePoint will give you an error. To execute that inline code, the web.config file needs to be modified to allow execution of that particular aspx file as follows:       &#60;PageParserPaths&#62;         &#60;PageParserPath VirtualPath="/path/to/script.aspx" CompilationMode="Always" AllowServerSideScript="true" /&#62;       &#60;/PageParserPaths&#62; This should be placed [...]]]></description>
		<wfw:commentRss>http://www.bigscholar.com/2011/11/24/allowing-sharepoint-to-execute-inline-code-in-aspx-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scrolling SharePoint 2010 site on iPad</title>
		<link>http://www.bigscholar.com/2011/09/02/scrolling-sharepoint-2010-site-on-ipad/</link>
		<comments>http://www.bigscholar.com/2011/09/02/scrolling-sharepoint-2010-site-on-ipad/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 22:41:35 +0000</pubDate>
		<dc:creator>Wei</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Custom Style Sheets]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.bigscholar.com/?p=211</guid>
		<description><![CDATA[When browsing a SharePoint site on the iPad, you might not be able to scroll up and down the site. To be able to do that, you need to use 2 fingers instead of 1 finger. It is not intuitive and most people will therefore not be able to navigate your SharePoint 2010 site on [...]]]></description>
		<wfw:commentRss>http://www.bigscholar.com/2011/09/02/scrolling-sharepoint-2010-site-on-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting process priority</title>
		<link>http://www.bigscholar.com/2011/08/31/setting-process-priority/</link>
		<comments>http://www.bigscholar.com/2011/08/31/setting-process-priority/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 03:12:42 +0000</pubDate>
		<dc:creator>Wei</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Office SharePoint Server]]></category>

		<guid isPermaLink="false">http://www.bigscholar.com/?p=209</guid>
		<description><![CDATA[If you are developing something that requires use of 3rd party programs, it usually is a good idea to change the priority of the process to something below normal otherwise it may take up all server resources which could result in performance issues to other users. The process priority can only be set through System.Diagnostics.Process: [...]]]></description>
		<wfw:commentRss>http://www.bigscholar.com/2011/08/31/setting-process-priority/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Map The SharePoint 2010 &#8216;PictureURL&#8217; User Profile Property to a BDC Attribute Using Forefront Identity Manager 2010</title>
		<link>http://www.bigscholar.com/2011/08/24/how-to-map-the-sharepoint-2010-pictureurl-user-profile-property-to-a-bdc-attribute-using-forefront-identity-manager-2010/</link>
		<comments>http://www.bigscholar.com/2011/08/24/how-to-map-the-sharepoint-2010-pictureurl-user-profile-property-to-a-bdc-attribute-using-forefront-identity-manager-2010/#comments</comments>
		<pubDate>Wed, 24 Aug 2011 05:25:13 +0000</pubDate>
		<dc:creator>Wei</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint User Profiles]]></category>

		<guid isPermaLink="false">http://www.bigscholar.com/?p=207</guid>
		<description><![CDATA[Here's a useful post on how to map a SharePoint URL with PictureURL in user profile properties. http://spmat.blogspot.com/2010/10/how-to-map-sharepoint-2010-pictureurl.html Here's one to map an extension attribute in AD to the PictureURL in user profile properties. http://goodbadtechnology.blogspot.com/2010/05/setting-up-pictureurl-user-profile.html Unfortunately, as you can see from these examples, it's not exactly a straightforward task.]]></description>
		<wfw:commentRss>http://www.bigscholar.com/2011/08/24/how-to-map-the-sharepoint-2010-pictureurl-user-profile-property-to-a-bdc-attribute-using-forefront-identity-manager-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Editing InfoPath 2010 xml with C#</title>
		<link>http://www.bigscholar.com/2011/07/28/editing-infopath-2010-xml-with-c/</link>
		<comments>http://www.bigscholar.com/2011/07/28/editing-infopath-2010-xml-with-c/#comments</comments>
		<pubDate>Thu, 28 Jul 2011 02:40:18 +0000</pubDate>
		<dc:creator>Wei</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[InfoPath]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[InfoPath 2010]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.bigscholar.com/?p=204</guid>
		<description><![CDATA[Here's a code snippet to edit nodes in an existing InfoPath 2010 Xml document from a selected Form Library in SharePoint 2010:  SPWeb mySite = SPContext.Current.Web;  SPList oList = mySite.Lists["FormLibraryName"];  SPQuery oQuery = new SPQuery();  oQuery.Query = "&#60;Where&#62;&#60;Eq&#62;&#60;FieldRef Name='FileLeafRef'/&#62;&#60;Value Type='Text'&#62;TargetFile.xml&#60;/Value&#62;&#60;/Eq&#62;&#60;/Where&#62;";  SPListItemCollection listItems = oList.GetItems(oQuery);  if (listItems.Count &#62; 0)  {   SPListItem item = listItems[0];   MemoryStream oMemoryStream [...]]]></description>
		<wfw:commentRss>http://www.bigscholar.com/2011/07/28/editing-infopath-2010-xml-with-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Uploading large files in SP 2010 IIS7</title>
		<link>http://www.bigscholar.com/2011/05/02/uploading-large-files-in-sp-2010-iis7/</link>
		<comments>http://www.bigscholar.com/2011/05/02/uploading-large-files-in-sp-2010-iis7/#comments</comments>
		<pubDate>Mon, 02 May 2011 01:48:53 +0000</pubDate>
		<dc:creator>Wei</dc:creator>
				<category><![CDATA[IIS]]></category>

		<guid isPermaLink="false">http://www.bigscholar.com/?p=201</guid>
		<description><![CDATA[To be able to upload files greater than 28Mb (even after setting the Maximum Upload Size in SP 2010 Central Admin to 100Mb), we need to go into IIS. By default IIS limits uploaded files to 28Mb so to increase the limit, we need to add the following into web.config &#60;system.webServer&#62;     &#60;security&#62;         &#60;requestFiltering&#62; [...]]]></description>
		<wfw:commentRss>http://www.bigscholar.com/2011/05/02/uploading-large-files-in-sp-2010-iis7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding a custom item in a SharePoint List Item drop down</title>
		<link>http://www.bigscholar.com/2011/04/20/adding-a-custom-item-in-a-sharepoint-list-item-drop-down/</link>
		<comments>http://www.bigscholar.com/2011/04/20/adding-a-custom-item-in-a-sharepoint-list-item-drop-down/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 01:48:20 +0000</pubDate>
		<dc:creator>Wei</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[SharePoint Web Parts]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Content Editor Web Part]]></category>
		<category><![CDATA[SharePoint Document Library]]></category>
		<category><![CDATA[SharePoint Lists]]></category>

		<guid isPermaLink="false">http://www.bigscholar.com/?p=198</guid>
		<description><![CDATA[Add a content editor web part to the document library page. On the content editor web part, add the following javascript. Be sure to modify the value for strAction to what you need. In this case, it is set to redirect to SomePage.aspx with the ListID and ItemID Parameters. &#60;script type="text/javascript"&#62; function Custom_AddDocLibMenuItems(m, ctx) { [...]]]></description>
		<wfw:commentRss>http://www.bigscholar.com/2011/04/20/adding-a-custom-item-in-a-sharepoint-list-item-drop-down/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding New Document alongside Add Document in Document Library</title>
		<link>http://www.bigscholar.com/2011/04/12/adding-new-document-alongside-add-document-in-document-library/</link>
		<comments>http://www.bigscholar.com/2011/04/12/adding-new-document-alongside-add-document-in-document-library/#comments</comments>
		<pubDate>Tue, 12 Apr 2011 07:04:11 +0000</pubDate>
		<dc:creator>Wei</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Content Editor Web Part]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint Document Library]]></category>

		<guid isPermaLink="false">http://www.bigscholar.com/?p=196</guid>
		<description><![CDATA[I've always wondered why SP 2010 document libraries has an Add Document but not a New Document link on their document libraries. Probably because they don't expect users to click on New Document very often and only expect users to Add Documents (upload documents from their PC to the document library). Anyway, the client has [...]]]></description>
		<wfw:commentRss>http://www.bigscholar.com/2011/04/12/adding-new-document-alongside-add-document-in-document-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

