<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>SharePoint @ Big Scholar</title>
	<link>http://www.bigscholar.com</link>
	<description>Developing, Configuring and Designing in SharePoint</description>
	<lastBuildDate>Thu, 05 Jan 2012 23:19:45 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.0" -->

	<item>
		<title>Check if user is in a SharePoint or AD group</title>
		<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>
		<link>http://www.bigscholar.com/2012/01/06/check-if-user-is-in-a-sharepoint-or-ad-group/</link>
			</item>
	<item>
		<title>Extracting attachments from SP List (Discussion Board)</title>
		<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>
		<link>http://www.bigscholar.com/2011/12/08/extracting-attachments-from-sp-list-discussion-board/</link>
			</item>
	<item>
		<title>Allowing SharePoint to execute inline code in .aspx files</title>
		<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>
		<link>http://www.bigscholar.com/2011/11/24/allowing-sharepoint-to-execute-inline-code-in-aspx-files/</link>
			</item>
	<item>
		<title>Scrolling SharePoint 2010 site on iPad</title>
		<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>
		<link>http://www.bigscholar.com/2011/09/02/scrolling-sharepoint-2010-site-on-ipad/</link>
			</item>
	<item>
		<title>Setting process priority</title>
		<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>
		<link>http://www.bigscholar.com/2011/08/31/setting-process-priority/</link>
			</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>
		<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>
		<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>
			</item>
	<item>
		<title>Editing InfoPath 2010 xml with C#</title>
		<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>
		<link>http://www.bigscholar.com/2011/07/28/editing-infopath-2010-xml-with-c/</link>
			</item>
	<item>
		<title>Uploading large files in SP 2010 IIS7</title>
		<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>
		<link>http://www.bigscholar.com/2011/05/02/uploading-large-files-in-sp-2010-iis7/</link>
			</item>
	<item>
		<title>Adding a custom item in a SharePoint List Item drop down</title>
		<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>
		<link>http://www.bigscholar.com/2011/04/20/adding-a-custom-item-in-a-sharepoint-list-item-drop-down/</link>
			</item>
	<item>
		<title>Adding New Document alongside Add Document in Document Library</title>
		<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>
		<link>http://www.bigscholar.com/2011/04/12/adding-new-document-alongside-add-document-in-document-library/</link>
			</item>
</channel>
</rss>

