<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-3036637022552530086</atom:id><lastBuildDate>Thu, 24 Oct 2024 21:42:33 +0000</lastBuildDate><category>sharepoint</category><category>c#</category><category>web part</category><category>asp.net</category><category>powershell</category><category>search</category><category>views</category><category>backup</category><category>cqwp</category><category>features</category><category>managed metadata</category><category>silverlight</category><category>tasks</category><category>user control</category><category>visual studio</category><title>SharePoint Wisdom</title><description>my brain is my blog</description><link>http://sharepointwisdom.blogspot.com/</link><managingEditor>noreply@blogger.com (Caroline)</managingEditor><generator>Blogger</generator><openSearch:totalResults>26</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3036637022552530086.post-5872826824800490021</guid><pubDate>Tue, 21 Apr 2015 04:24:00 +0000</pubDate><atom:updated>2015-04-20T21:24:08.833-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">sharepoint</category><category domain="http://www.blogger.com/atom/ns#">views</category><title>Sharepoint Task List - hiding the timeline from a view in c#</title><description>Ever wonder how to remove the timeline from a task list view using c#? &amp;nbsp;Me too. &amp;nbsp;Here is the answer...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;var list = web.Lists[Constants.Lists.TaskList];
var view = list.Views[&quot;All Tasks&quot;];
view.ViewData = &quot;&lt;fieldref ercentcomplete=&quot;&quot; name=&quot;\&quot; trikethroughpercentcomplete=&quot;&quot; type=&quot;\&quot;&gt;&quot;;
view.Update();  
&lt;/fieldref&gt;&lt;/pre&gt;
&lt;br /&gt;
That&#39;s hours and hours of my life I&#39;ll never get back.
</description><link>http://sharepointwisdom.blogspot.com/2015/04/sharepoint-task-list-hiding-timeline.html</link><author>noreply@blogger.com (Caroline)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3036637022552530086.post-5468496930644008962</guid><pubDate>Thu, 05 Mar 2015 01:23:00 +0000</pubDate><atom:updated>2015-03-04T17:23:29.150-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">managed metadata</category><category domain="http://www.blogger.com/atom/ns#">powershell</category><category domain="http://www.blogger.com/atom/ns#">sharepoint</category><title>SharePoint 2013 - edit navigation term with powershell</title><description>I had a requirement to edit a term for a site with powershell to set the &quot;Change target page for this term&quot;  property for a term-driven page.&lt;br /&gt;
&lt;br /&gt;
The powershell I used is:&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;$site = Get-SPSite $portalUrl
$taxSession = Get-SPTaxonomySession -Site $site
$termStore = $taxSession.TermStores[$managedMetadataService]
$termStoreGroup = $termStore.Groups[$termStoreGroup]
$termSet = $termStoreGroup.TermSets[$termSet]
$term = $termSet.Terms.Item($term)
$term.SetLocalCustomProperty(&quot;_Sys_Nav_TargetUrl&quot;, $newUrl)
$termStore.CommitAll()
&lt;/pre&gt;
</description><link>http://sharepointwisdom.blogspot.com/2015/03/sharepoint-2013-edit-navigation-term.html</link><author>noreply@blogger.com (Caroline)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3036637022552530086.post-2222321541717361126</guid><pubDate>Mon, 23 Feb 2015 03:48:00 +0000</pubDate><atom:updated>2015-02-22T19:48:48.445-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">cqwp</category><category domain="http://www.blogger.com/atom/ns#">sharepoint</category><category domain="http://www.blogger.com/atom/ns#">web part</category><title>Sharepoint 2013 - showing Task Due Date in Content Query Web Part (CQWP)</title><description>To get the Due Date of a task to appear in a content query web part you need to configure the web part to use &#39;TaskDueDate&#39;, not &#39;DueDate&#39;.&amp;nbsp; This then resolves in the web part to Due Date [Core Task and Issue Columns].</description><link>http://sharepointwisdom.blogspot.com/2015/02/sharepoint-2013-showing-task-due-date.html</link><author>noreply@blogger.com (Caroline)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3036637022552530086.post-5747877681205898595</guid><pubDate>Sun, 22 Feb 2015 22:46:00 +0000</pubDate><atom:updated>2015-02-22T14:46:06.616-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">visual studio</category><title>Visual Studio stuck on &quot;Waiting for parse to complete...&quot;</title><description>Today when I opened my sharepoint 2013 solution in Visual Studio 2013 it got stuck loading a project with the message in the status bar of &quot;Waiting for parse to complete...&quot;.&amp;nbsp; Yesterday before I closed visual studio I was looking at a large xsl file which I had left open before closing visual studio.&amp;nbsp; I think this may have been the file it was stuck on?&lt;br /&gt;
&lt;br /&gt;
The way I fixed it was to remove the mapping in Visual Studio to the solution and re-add it in Source Control Explorer.&amp;nbsp; To remove mapping:&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Backup your source code to another folder &lt;/li&gt;
&lt;li&gt;go to Source Control Explorer&lt;/li&gt;
&lt;li&gt;right click on the folder that contains the solution&lt;/li&gt;
&lt;li&gt;Go to Advanced &amp;gt; Remove Mapping...&lt;/li&gt;
&lt;/ol&gt;
</description><link>http://sharepointwisdom.blogspot.com/2015/02/visual-studio-stuck-on-waiting-for.html</link><author>noreply@blogger.com (Caroline)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3036637022552530086.post-5217540699086107344</guid><pubDate>Mon, 16 Feb 2015 22:59:00 +0000</pubDate><atom:updated>2015-02-16T14:59:59.488-08:00</atom:updated><title>Visual Studio - display selected file in solution explorer</title><description>Everytime I need to set this up I can&#39;t remember how.&amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
It is very handy when you have a Visual Studio project with a large number of files to have the file you are working on highlighted in the solution explorer.&amp;nbsp; This doesn&#39;t happen automatically but is super easy to set up.&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;b&gt;Tools &amp;gt; Options &amp;gt; Projects and Solutions &amp;gt; General &amp;gt; Track Active item in Solution Explorer&lt;/b&gt;&lt;/blockquote&gt;
&lt;br /&gt;
Done!</description><link>http://sharepointwisdom.blogspot.com/2015/02/visual-studio-display-selected-file-in.html</link><author>noreply@blogger.com (Caroline)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3036637022552530086.post-5886206469284959552</guid><pubDate>Tue, 10 Feb 2015 00:13:00 +0000</pubDate><atom:updated>2015-02-09T16:13:19.658-08:00</atom:updated><title>User Profile Synchronization Service</title><description>That old gem of getting the user profile synchronization service running bit me today.&amp;nbsp; Thanks so much to &lt;a href=&quot;http://sharepointbjorn.com/2014/06/25/user-profile-synchronization-autofixer&quot; target=&quot;_blank&quot;&gt;SharePointBjorn&lt;/a&gt; for supplying the powershell script to fix it.</description><link>http://sharepointwisdom.blogspot.com/2015/02/user-profile-synchronization-service.html</link><author>noreply@blogger.com (Caroline)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3036637022552530086.post-8012992354958933593</guid><pubDate>Mon, 09 Feb 2015 00:56:00 +0000</pubDate><atom:updated>2015-02-08T21:23:04.983-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">sharepoint</category><category domain="http://www.blogger.com/atom/ns#">tasks</category><category domain="http://www.blogger.com/atom/ns#">views</category><title>SharePoint 2013 - Creating a view to show tasks assigned to me and groups that I am a member of</title><description>I have a requirement to create a view to show tasks that are:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;assigned to me, and&lt;/li&gt;
&lt;li&gt;assigned to groups that I am a member of&lt;/li&gt;
&lt;/ul&gt;
Thanks to this blog for the answer:&amp;nbsp; &lt;a href=&quot;http://www.ericgregorich.com/blog/2014/3/25/filter-sharepoint-task-list-view-to-show-tasks-assigned-to-groups-i-am-in&quot; target=&quot;_blank&quot;&gt;Filter Sharepoint Task Llist View To Show Tasks Assigned To Groups I am in.&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
The Where clause for the view needs to be:&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt; 
&amp;lt;Or&amp;gt;
  &amp;lt;Membership Type=&quot;CurrentUserGroups&quot;&amp;gt;
    &amp;lt;FieldRef Name=&quot;AssignedTo&quot;/&amp;gt;
  &amp;lt;/Membership&amp;gt;
  &amp;lt;Eq&amp;gt;
    &amp;lt;FieldRef Name=&quot;AssignedTo&quot;/&amp;gt;
    &amp;lt;Value Type=&quot;Integer&quot;&amp;gt;
      &amp;lt;UserID/&amp;gt;
    &amp;lt;/Value&amp;gt;
  &amp;lt;/Eq&amp;gt;
&amp;lt;/Or&amp;gt;

&lt;/pre&gt;
&lt;br /&gt;
And that is all.</description><link>http://sharepointwisdom.blogspot.com/2015/02/sharepoint-2013-creating-view-to-show.html</link><author>noreply@blogger.com (Caroline)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3036637022552530086.post-4472659192512554665</guid><pubDate>Thu, 05 Feb 2015 02:50:00 +0000</pubDate><atom:updated>2015-02-04T18:50:25.717-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">c#</category><category domain="http://www.blogger.com/atom/ns#">sharepoint</category><category domain="http://www.blogger.com/atom/ns#">web part</category><title>SharePoint 2013 - Adding a ListViewWebPart throws error &quot;The specified view is invalid&quot;</title><description>Today I encounted an issue where I was programatically adding a ListViewWebPart to a page and getting an exception &quot;The specified view is invalid&quot;.&lt;br /&gt;
&lt;br /&gt;
The code throwing the exception was&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;            var listViewWebPart = new ListViewWebPart 
            {
                ListId = list.ID, 
                ChromeType = PartChromeType.None,
                ViewGuid = list.Views[Constants.ViewNames.DocumentLibraryAllDocumentSets].ID.ToString(&quot;B&quot;).ToUpper()
            };
            webPartManager.AddWebPart(listViewWebPart, &quot;Top&quot;, 1);
&lt;/pre&gt;
&lt;br /&gt;
The solution was to change ListViewWebPart to XsltListViewWebPart.  Once I did that the problem went away.</description><link>http://sharepointwisdom.blogspot.com/2015/02/sharepoint-2013-adding-listviewwebpart.html</link><author>noreply@blogger.com (Caroline)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3036637022552530086.post-2126541883976189281</guid><pubDate>Tue, 03 Feb 2015 23:55:00 +0000</pubDate><atom:updated>2015-02-03T15:55:24.783-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">powershell</category><category domain="http://www.blogger.com/atom/ns#">search</category><category domain="http://www.blogger.com/atom/ns#">sharepoint</category><title>Sharepoint 2013 - create mapped properties with powershell</title><description>It has been many years and a couple of versions of SharePoint since I posted and I figured it&#39;s time to resurrect SharePoint Wisdom.&amp;nbsp; What better way to start than a sample powershell function that will add/edit a managed property and map a crawled property to it in SharePoint 2013.&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;if ((Get-PSSnapin &quot;Microsoft.SharePoint.PowerShell&quot; -ErrorAction SilentlyContinue) -eq $null) {
    Add-PSSnapin &quot;Microsoft.SharePoint.PowerShell&quot;
}

Function UpdateManagedPropertyMapping([string]$managedPropertyName, [string]$crawledPropertyName, $searchApp)
{
    $managedProperty = Get-SPEnterpriseSearchMetadataManagedProperty -SearchApplication $searchApp -Identity $managedPropertyName -ErrorAction SilentlyContinue
    Write-Host Adding/Updating managed property $managedPropertyName

    if($managedProperty -eq $null)
    {
        #create a new property
        Write-Host Creating managed property $managedPropertyName
        $managedProperty = New-SPEnterpriseSearchMetadataManagedProperty -SearchApplication $searchApp -Name $managedPropertyName -Type 1 -Queryable $true -Retrievable $true 
        $managedProperty.Refinable = $true
        $managedProperty.Sortable = $true
        $managedProperty.Update()
        Write-Host Created managed property $managedPropertyName
    }
    else
    {
        Write-Host Managed property $managedPropertyName already exists
    }

    $managedPropertyMapping = Get-SPEnterpriseSearchMetadataMapping -SearchApplication $searchApp -ManagedProperty $managedProperty
    if($managedPropertyMapping)
    {
        #remove mapping
        Write-Host Removing existing mapping
        Remove-SPEnterpriseSearchMetadataMapping -Identity $managedPropertyMapping -Confirm:$false

    }
    Write-Host Mapping property $crawledPropertyName to $managedPropertyName
    $crawledProperty = Get-SPEnterpriseSearchMetadataCrawledProperty -SearchApplication $searchApp -Name $crawledPropertyName
    $managedPropertyMapping = New-SPEnterpriseSearchMetadataMapping -SearchApplication $searchApp -ManagedProperty $managedProperty -CrawledProperty $crawledProperty

    Write-Host Finished adding/updating managed property $managedPropertyName
}

$searchApp = Get-SPEnterpriseSearchServiceApplication
UpdateManagedPropertyMapping FFBoKAuthor ows_Author0 $searchApp
UpdateManagedPropertyMapping FFBoKPublicationYear ows_CategoryLevel1 $searchApp
UpdateManagedPropertyMapping FFBoKCategory1 ows_CategoryLevel1 $searchApp
&lt;/pre&gt;
&lt;br /&gt;
I hope this script proves useful to someone.
</description><link>http://sharepointwisdom.blogspot.com/2015/02/sharepoint-2013-create-mapped.html</link><author>noreply@blogger.com (Caroline)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3036637022552530086.post-4419928624374887489</guid><pubDate>Wed, 22 Apr 2009 02:50:00 +0000</pubDate><atom:updated>2009-04-21T19:58:37.805-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">asp.net</category><category domain="http://www.blogger.com/atom/ns#">c#</category><category domain="http://www.blogger.com/atom/ns#">sharepoint</category><title>Visual Studio 2008 Office 2007 templates missing</title><description>I just tried to create a new SharePoint 2007 Sequential Workflow in Visual Studio 2008, but when I navigated to Office 2007 in the project types no templates appeared.&lt;br /&gt;&lt;br /&gt;I scratched my head for about 10 minutes and then noticed that I had selected .NET Framework 3.0 as the .NET version. Changing this to .NET Framework 3.5 fixed the problem.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgyzC2gF0FQhG6bW_LO6SApEq8evS9EMR3sIQuuUqJbhxn5zB0s5xVoiLxx9yymrndJn-e-LZma79rjrir643tfL_ZR6KXE3Wp8IcHIGmxrSWTAJ2k4L6grHzW1RzBu6puly0BMYOd8-Ac/s1600-h/vs2008.JPG&quot;&gt;&lt;img id=&quot;BLOGGER_PHOTO_ID_5327344136012379458&quot; style=&quot;WIDTH: 320px; CURSOR: hand; HEIGHT: 218px&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgyzC2gF0FQhG6bW_LO6SApEq8evS9EMR3sIQuuUqJbhxn5zB0s5xVoiLxx9yymrndJn-e-LZma79rjrir643tfL_ZR6KXE3Wp8IcHIGmxrSWTAJ2k4L6grHzW1RzBu6puly0BMYOd8-Ac/s320/vs2008.JPG&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgojsnUrMWEyOYDx9nwralgeFvKYgQ0fxCAG8bT9F06rbM7CRk1dsKsy2sL4PVopAWtn9nVStFA9fHJZcSSGqCyd4CYTQ5J9HxMyC3foFZ_dX0dJ5TyTw3Q-0IY5g5P4higjVGU_SQqgJ4/s1600-h/vs2008.JPG&quot;&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;/div&gt;</description><link>http://sharepointwisdom.blogspot.com/2009/04/visual-studio-2008-office-2007.html</link><author>noreply@blogger.com (Caroline)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgyzC2gF0FQhG6bW_LO6SApEq8evS9EMR3sIQuuUqJbhxn5zB0s5xVoiLxx9yymrndJn-e-LZma79rjrir643tfL_ZR6KXE3Wp8IcHIGmxrSWTAJ2k4L6grHzW1RzBu6puly0BMYOd8-Ac/s72-c/vs2008.JPG" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3036637022552530086.post-7196920542991222712</guid><pubDate>Wed, 11 Feb 2009 03:42:00 +0000</pubDate><atom:updated>2009-02-10T19:49:29.459-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">sharepoint</category><title>Retrieving the COM class factory for component with CLSID {3D42CCB1-4665-4620-92A3-478F47389230} failed due to the following error: 80070005</title><description>I came across this error in SharePoint yesterday. It seemed to spontaneously occur for no reason I could figure out and seemed to be linked to importing user profiles from Active Directory. The import stopped working and this error started to appear.&lt;br /&gt;&lt;br /&gt;After searching I found a few articles suggesting to fix permissions on the OSearch component. One of these is &lt;a href=&quot;http://www.sharepointblogs.com/jasonmedero/archive/2008/02/08/after-applying-moss-2007-sp1-event-log-error-retrieving-the-com-class-factory-for-component-with-clsid-3d42ccb1-4665-4620-92a3-478f47389230-failed-due-to-the-following-error-80070005.aspx&quot;&gt;http://www.sharepointblogs.com/jasonmedero/archive/2008/02/08/after-applying-moss-2007-sp1-event-log-error-retrieving-the-com-class-factory-for-component-with-clsid-3d42ccb1-4665-4620-92a3-478f47389230-failed-due-to-the-following-error-80070005.aspx&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I checked these permissions and found that they were already correct. What I did try then was to stop and start the osearch service.&lt;br /&gt;&lt;br /&gt;Restarting the osearch service made the error go away BUT then when I tried to go to the User Profile page in the SSP I got a new error which stated there was a problem connecting to the database or to the search. Upon further investigation I discovered that the SSP web application had lost it&#39;s connection to the indexer. Once I added this back in it seemed to work fine again.</description><link>http://sharepointwisdom.blogspot.com/2009/02/retrieving-com-class-factory-for.html</link><author>noreply@blogger.com (Caroline)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3036637022552530086.post-5800335771619435957</guid><pubDate>Wed, 09 Jul 2008 05:16:00 +0000</pubDate><atom:updated>2008-07-08T22:27:00.093-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">search</category><category domain="http://www.blogger.com/atom/ns#">sharepoint</category><title>Wildcard Search in MOSS</title><description>Earlier this year I was asked to implement wildcard people search in MOSS.  The solution I went with wasn&#39;t pretty and I wish I could go back and do it again.  If I could do it again I would try to use the method outlined in this article with some customisations to make it work for People Search:  &lt;a href=&quot;http://www.dotnetmafia.com/blogs/dotnettipoftheday/archive/2008/06/09/new-web-part-for-wildcard-search-in-enterprise-search.aspx&quot;&gt;Web Part for Wildcard Search in Enterprise Search &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The way I had originally gone about it was to create a custom people search box based on &lt;a href=&quot;http://www.tqcblog.com/archive/2007/10/26/creating-a-custom-advanced-search-box-in-moss-2007.aspx&quot;&gt;this article&lt;/a&gt;.  It worked really well EXCEPT that if any of my criteria were null for the person but they met other search criteria they would not show up in the results.</description><link>http://sharepointwisdom.blogspot.com/2008/07/wildcard-search-in-moss.html</link><author>noreply@blogger.com (Caroline)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3036637022552530086.post-3555434755953492745</guid><pubDate>Mon, 23 Jun 2008 04:52:00 +0000</pubDate><atom:updated>2008-07-28T16:49:43.859-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">sharepoint</category><title>List of SharePoint links</title><description>&lt;p&gt;List of useful SharePoint resources: &lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://www.harbar.net/articles/postsp1.aspx&quot;&gt;http://www.harbar.net/articles/postsp1.aspx&lt;/a&gt; - list of Post SP1 hotfixes for sharepoint&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.mssharepointdeveloper.com/&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt;http://www.mssharepointdeveloper.com/&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt; - The SharePoint Developer Introduction for .NET Developers &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.blogger.com/SharePoint%20Developer%20MSDN%20Web%20Cast%20Series&quot;&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt;SharePoint Developer MSDN Web Cast Series &lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://technet.microsoft.com/en-au/windowsserver/sharepoint/bb407286.aspx&quot;&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt;Application Templates for Windows Sharepoint Services 3.0&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.microsoft.com/downloads/details.aspx?familyid=cb944b27-9d6b-4a1f-b3e1-778efda07df8&amp;amp;displaylang=en&quot;&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt;Microsoft Best Practices Analyzer for Windows SharePoint Services 3.0 and the 2007 Microsoft Office System&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.sharepointusers.org.au/Canberra/default.aspx&quot;&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt;Canberra SharePoint User Group&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://blogs.msdn.com/joelo/archive/2007/07/09/capacity-planning-key-links-and-info.aspx&quot;&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt;SharePoint Capacity Planning Key Info&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.codeplex.com/Project/ProjectDirectory.aspx?TagName=Sharepoint&amp;amp;ProjectSearchText=sharepoint&quot;&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt;CodePlex SharePoint&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt; - open source SharePoint projects &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.heathersolomon.com/blog/&quot;&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt;Heather Solomon&#39;s blog&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt; - great for branding, css, publishing &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://msdn.microsoft.com/en-us/library/bb727372.aspx&quot;&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt;How to Create a SharePoint Server 2007 Custom Master Page and Page Layouts for a Web Content Management Site&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://msdn.microsoft.com/en-us/library/bb727371.aspx&quot;&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt;How to Optimize a SharePoint Server 2007 Web Content Management Site for Performance&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.graphicalwonder.com/masterpage-reference.jpg&quot;&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt;WSS 3.0 Master Page Desktop reference&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt; - Lists content placeholders that appear in a master page and what they are &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://blogs.msdn.com/miketag/archive/2008/03/24/some-useful-moss-search-development-related-articles.aspx&quot;&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt;Some Useful MOSS Search Development Related Articles&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://msdn.microsoft.com/en-au/office/default.aspx&quot;&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt;Office Developer Centre&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://technet.microsoft.com/en-us/library/cc303422(TechNet.10).aspx&quot;&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt;TechNet - Microsoft Office SharePoint Server 2007&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://sharepoint.microsoft.com/sharepoint/default.aspx&quot;&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt;Microsoft SharePoint Community Portal&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://forums.microsoft.com/MSDN/default.aspx?ForumGroupID=328&amp;amp;SiteID=1&quot;&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt;MSDN Forums - SharePoint&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://sharepointsearch.com/pages/bigresourcelist.aspx&quot;&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt;The BIG SharePoint Resource List&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://msdn.microsoft.com/en-us/office/aa905503.aspx&quot;&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt;Developer Portal&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://msdn.microsoft.com/en-us/sharepoint/default.aspx&quot;&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt;MSDN WSS Developer Centre&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;</description><link>http://sharepointwisdom.blogspot.com/2008/06/list-of-sharepoint-links.html</link><author>noreply@blogger.com (Caroline)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3036637022552530086.post-1081892066851068242</guid><pubDate>Wed, 18 Jun 2008 01:06:00 +0000</pubDate><atom:updated>2008-06-17T18:08:13.585-07:00</atom:updated><title>.NET and SharePoint Interview questions</title><description>My list of .NET and SharePoint interview questions&lt;br /&gt;&lt;br /&gt;.NET Questions&lt;br /&gt;&lt;br /&gt;Describe what an Interface is and how it differs from a class.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is polymorphism?&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is reflection&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;How is the using() pattern useful?  What is IDisposable?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is an abstract class?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Can you name some major ASP.net objects:  Session, Page, Server, Response, Request, Application&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Can you describe the ASP.NET page lifecycle?  What methods are fired during the page load?  Page request, Start, Page Initialisation, Load, Validation, Postback event handling, Rendering, Unload.  PreInit, Init, InitComplete, PreLoad, OnLoad, control events, LoadComplete, PreRender, SaveStateComplete, the page calls Render for each control, Unload&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;How do you store information across postbacks?  What different ways are there?  Which one do you prefer and why? ViewState, Query Strings, Application, Session&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is an n-tier design?  Can you give an example?&lt;br /&gt;What is AJAX?  Have you used it?  Examples?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Can you used application blocks in your programming?  Which ones?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Patterns?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;SharePoint Questions&lt;br /&gt;&lt;br /&gt;What are content types and how are they used?  Can you give me an example of where you have used them?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What elements does SharePoint provide to allow you to define the look and feel of a publishing site?  Master Page, Page Layouts, Content types, CSS&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;How could you display information from a list on one site on another site in the same site collection?  Dataview, CQWP, RSS.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Why would you want to extend a web application?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is the 12 hive OR can you tell me where SharePoint stores it’s files&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Are you familiar with the file onet.xml?  What is it?  Site Definition file&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is a Feature&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is a Solution&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is SPWeb, SPSite.  Can you tell me anything special that a developer must keep in mind when using these objects in code?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is SharePoint Designer?  How have you used it?</description><link>http://sharepointwisdom.blogspot.com/2008/06/net-and-sharepoint-interview-questions.html</link><author>noreply@blogger.com (Caroline)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3036637022552530086.post-5454846170464146174</guid><pubDate>Wed, 28 May 2008 02:02:00 +0000</pubDate><atom:updated>2008-05-27T19:03:19.690-07:00</atom:updated><title>SharePoint developers webcast series</title><description>A series of webcasts for SharePoint developers:  &lt;a href=&quot;http://blogs.msdn.com/pandrew/archive/2008/05/12/sharepoint-developer-msdn-web-cast-series.aspx&quot;&gt;http://blogs.msdn.com/pandrew/archive/2008/05/12/sharepoint-developer-msdn-web-cast-series.aspx&lt;/a&gt;</description><link>http://sharepointwisdom.blogspot.com/2008/05/sharepoint-developers-webcast-series.html</link><author>noreply@blogger.com (Caroline)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3036637022552530086.post-2359327582122227243</guid><pubDate>Mon, 26 May 2008 05:26:00 +0000</pubDate><atom:updated>2008-05-25T22:29:25.718-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">sharepoint</category><category domain="http://www.blogger.com/atom/ns#">web part</category><title>Closed web part gallery</title><description>Are you trying to find the closed web part gallery? I was, then I found it here:&lt;br /&gt;&lt;br /&gt;1. Click on Edit Page&lt;br /&gt;2. Click on Add Web Part&lt;br /&gt;3. When you get the list of web parts that are available, click on Advanced.&lt;br /&gt;4. Now you will see any web parts that were closed</description><link>http://sharepointwisdom.blogspot.com/2008/05/closed-web-part-gallery.html</link><author>noreply@blogger.com (Caroline)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3036637022552530086.post-6819010578856255344</guid><pubDate>Thu, 15 May 2008 00:56:00 +0000</pubDate><atom:updated>2008-05-14T18:27:53.270-07:00</atom:updated><title>Branding meeting workspaces</title><description>I recently had an issue where I created a master page and tried to apply it (using feature stapling) to sites based on meeting workspace site templates. The lessons learnt from this were:&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Meeting workspaces don&#39;t use default.master. They use MWSdefault.master. Base the master page for meeting workspaces on MWSdefault.master as it has extra functionality specific to meeting workspaces.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;When setting the master page programatically, you need to set two properties as follows:&lt;br /&gt;web.MasterUrl = &quot;something.master&quot;;&lt;br /&gt;web.CustomMasterUrl = &quot;something.master&quot;;&lt;br /&gt;For sites based on other site templates I only had to set web.MasterUrl.&lt;/li&gt;&lt;/ol&gt;</description><link>http://sharepointwisdom.blogspot.com/2008/05/branding-meeting-workspaces.html</link><author>noreply@blogger.com (Caroline)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3036637022552530086.post-7703765586950440385</guid><pubDate>Tue, 13 May 2008 00:44:00 +0000</pubDate><atom:updated>2008-05-12T17:46:20.807-07:00</atom:updated><title>How to get started as a SharePoint developer</title><description>List of skills and resources in this linked blog on &lt;a href=&quot;http://blogs.msdn.com/pandrew/archive/2008/05/01/getting-started-with-sharepoint-development.aspx&quot;&gt;Getting Started with SharePoint Development&lt;/a&gt;</description><link>http://sharepointwisdom.blogspot.com/2008/05/how-to-get-started-as-sharepoint.html</link><author>noreply@blogger.com (Caroline)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3036637022552530086.post-5566892342913561128</guid><pubDate>Wed, 07 May 2008 23:43:00 +0000</pubDate><atom:updated>2008-05-07T16:45:36.276-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">c#</category><category domain="http://www.blogger.com/atom/ns#">sharepoint</category><title>Dispose of SPWeb and SPSite objects</title><description>When coding in SharePoint you should ALWAYS dispose of SPWeb and SPSite objects.  They use a small amount of managed code and a large amount of unmanaged code.  As a result of the small managed code, the garbage collector doesn&#39;t clear out the items from memory which can lead to a world of pain...&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://msdn.microsoft.com/en-us/library/aa973248.aspx&quot;&gt;Best Practices: Using Disposable Windows SharePoint Services Objects&lt;/a&gt;</description><link>http://sharepointwisdom.blogspot.com/2008/05/dispose-of-spweb-and-spsite-objects.html</link><author>noreply@blogger.com (Caroline)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3036637022552530086.post-120852148106381027</guid><pubDate>Wed, 07 May 2008 23:28:00 +0000</pubDate><atom:updated>2008-05-07T16:29:47.136-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">backup</category><category domain="http://www.blogger.com/atom/ns#">sharepoint</category><title>SharePoint Data Protection and recovery</title><description>&lt;a href=&quot;http://technet.microsoft.com/en-us/library/cc262129.aspx&quot;&gt;White paper: Data protection and recovery for Office SharePoint Server in small to medium deployments&lt;br /&gt;&lt;/a&gt;</description><link>http://sharepointwisdom.blogspot.com/2008/05/sharepoint-data-protection-and-recovery.html</link><author>noreply@blogger.com (Caroline)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3036637022552530086.post-4517573459789053158</guid><pubDate>Wed, 07 May 2008 08:23:00 +0000</pubDate><atom:updated>2008-08-07T17:44:46.255-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">c#</category><category domain="http://www.blogger.com/atom/ns#">sharepoint</category><category domain="http://www.blogger.com/atom/ns#">user control</category><category domain="http://www.blogger.com/atom/ns#">web part</category><title>Web Parts and User Controls</title><description>&lt;strong&gt;&lt;em&gt;UPDATE 4 July 08:&lt;/em&gt;&lt;/strong&gt; Came across an article by Damon Armstrong about &lt;a href=&quot;http://rebeldeveloper.com/archive/2008/06/04/tech-ed-2008-simplifying-web-part-development.aspx&quot;&gt;Simplifying Web Part Development&lt;/a&gt; using templated web parts. Pretty cool way of doing user controls with web parts. &lt;em&gt;&lt;strong&gt;End of update.&lt;/strong&gt;&lt;/em&gt;&lt;br /&gt;&lt;br /&gt;I wanted to create a webpart but be able to design it visually in Visual Studio. I was thinking that to do this should be easy - I can just create a web user control, and then wrap the web part around. Was it easy? Kind of.&lt;br /&gt;&lt;br /&gt;I also wanted to have this web part in a Sharepoint solution (ie .wsp file).&lt;br /&gt;&lt;br /&gt;The approach I took was as follows:&lt;br /&gt;&lt;br /&gt;1. Use &lt;a href=&quot;http://www.codeplex.com/stsdev&quot;&gt;STSDEV&lt;/a&gt; to create a solution with a web part feature. I&#39;m a big fan of this tool!!!!&lt;br /&gt;2. Create the user control .ascx file and add it into the folder structure created in the STSDEV tool. I added it to the TEMPLATE &gt; CONTROLTEMPLATES folder.&lt;br /&gt;3. Programatically added the user control to the webpart.&lt;br /&gt;4. Deployed the solution.&lt;br /&gt;&lt;br /&gt;I am going to focus on points 2 and 3 above. There are plenty of good articles out there already on how to use STSDEV to create solutions and features.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Creating the User Control&lt;/strong&gt;&lt;br /&gt;To create the user control I just added in a new file to the project called SiteList.ascx. At the top of the file I added in the @Control directive as follows:&lt;br /&gt;&lt;br /&gt;&quot;&lt; %@ Control Language=&quot;C#&quot; AutoEventWireup=&quot;true&quot; CompilationMode=&quot;Always&quot; % &gt;&quot;&lt;br /&gt;&lt;br /&gt;Note that I am not using a code behind file.&lt;br /&gt;&lt;br /&gt;I then added the rest of the code to this file as follows:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiLKtYCFU8mbXDwSqYOLIHUI4U03Vj7KApqGMRc7c2PcwI4JaYROBx21cIcb9ZyjD0l2UjjvrI1TE2veGqRCbMbBPAyncoC042qewQV6omrHSL0CC5682WIlgKC8puhA13dpWFWAram4_U/s1600-h/untitled.bmp&quot;&gt;&lt;img id=&quot;BLOGGER_PHOTO_ID_5197561906235482066&quot; style=&quot;DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiLKtYCFU8mbXDwSqYOLIHUI4U03Vj7KApqGMRc7c2PcwI4JaYROBx21cIcb9ZyjD0l2UjjvrI1TE2veGqRCbMbBPAyncoC042qewQV6omrHSL0CC5682WIlgKC8puhA13dpWFWAram4_U/s320/untitled.bmp&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The solution (using STSDEV) will deploy this SiteList.ascx to the 12 hive\Template\ControlTemplates folder.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Adding the user control to the web part&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;This bit is easy. Just write the CreateChildControls() method as follows:&lt;br /&gt;&lt;br /&gt;protected override void CreateChildControls() {&lt;br /&gt;UserControl sitelist = (UserControl)Page.LoadControl(@&quot;/_controltemplates/SiteList.ascx&quot;);&lt;br /&gt;Controls.Add(sitelist);&lt;br /&gt;&lt;br /&gt;That&#39;s it. It is a very simple example but it works for me.</description><link>http://sharepointwisdom.blogspot.com/2008/05/web-parts-and-user-controls.html</link><author>noreply@blogger.com (Caroline)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiLKtYCFU8mbXDwSqYOLIHUI4U03Vj7KApqGMRc7c2PcwI4JaYROBx21cIcb9ZyjD0l2UjjvrI1TE2veGqRCbMbBPAyncoC042qewQV6omrHSL0CC5682WIlgKC8puhA13dpWFWAram4_U/s72-c/untitled.bmp" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3036637022552530086.post-7021434648336230601</guid><pubDate>Wed, 07 May 2008 00:51:00 +0000</pubDate><atom:updated>2008-05-06T17:55:49.074-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">asp.net</category><category domain="http://www.blogger.com/atom/ns#">c#</category><category domain="http://www.blogger.com/atom/ns#">silverlight</category><title>Remix 08 Sydney</title><description>I&#39;m looking forward to attending the  &lt;a href=&quot;http://www.microsoft.com/australia/remix08/index.aspx&quot;&gt;Remix 08 conference in Sydney&lt;/a&gt; later this month to learn more about Silverlight and Expression Blend with a view to creating web parts for SharePoint that use it.  Should be fun.</description><link>http://sharepointwisdom.blogspot.com/2008/05/remix-08-sydney.html</link><author>noreply@blogger.com (Caroline)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3036637022552530086.post-5462178060643232368</guid><pubDate>Wed, 07 May 2008 00:45:00 +0000</pubDate><atom:updated>2008-05-06T17:51:23.642-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">sharepoint</category><title>Site Enumeration</title><description>&lt;a href=&quot;http://stevesps.blogspot.com/2007/03/details-about-site-enumeration.html&quot;&gt;Site enumeration blog post&lt;/a&gt;</description><link>http://sharepointwisdom.blogspot.com/2008/05/site-enumeration.html</link><author>noreply@blogger.com (Caroline)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3036637022552530086.post-3282268408803537858</guid><pubDate>Mon, 05 May 2008 01:19:00 +0000</pubDate><atom:updated>2008-05-04T18:35:49.523-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">features</category><category domain="http://www.blogger.com/atom/ns#">sharepoint</category><title>Site Template references</title><description>So I don&#39;t have to spend time searching for this info each time I want to do feature stapling:&lt;br /&gt;&lt;br /&gt;STS#0 - Team Site&lt;br /&gt;STS#1 - Blank Site&lt;br /&gt;STS#2 - Document Workspace&lt;br /&gt;MPS#0 - Basic Meeting workspace&lt;br /&gt;MPS#1 - Blank meeting workspace&lt;br /&gt;MPS#2 - Decision Meeting Workspace&lt;br /&gt;MPS#3 - Social Meeting Workspace&lt;br /&gt;MPS#4 - Multipage Meeting Workspace&lt;br /&gt;WIKI#0 - Wiki Site&lt;br /&gt;BLOG#0 - Blog site</description><link>http://sharepointwisdom.blogspot.com/2008/05/site-template-references.html</link><author>noreply@blogger.com (Caroline)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3036637022552530086.post-331838978450359160</guid><pubDate>Mon, 05 May 2008 01:10:00 +0000</pubDate><atom:updated>2008-05-04T18:11:39.195-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">c#</category><category domain="http://www.blogger.com/atom/ns#">sharepoint</category><title>Custom Navigation</title><description>Here is a link to a good presentation about how to customise SharePoint navigation &lt;a href=&quot;http://www.jornata.com/presentations/cardarelli_buildingcustomnavigation.ppt&quot;&gt;http://www.jornata.com/presentations/cardarelli_buildingcustomnavigation.ppt&lt;/a&gt;</description><link>http://sharepointwisdom.blogspot.com/2008/05/custom-navigation.html</link><author>noreply@blogger.com (Caroline)</author><thr:total>0</thr:total></item></channel></rss>