<?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>What&#039;s The (Share)Point? &#187; best practice</title>
	<atom:link href="http://whatsthesharepoint.com/tag/best-practice/feed/" rel="self" type="application/rss+xml" />
	<link>http://whatsthesharepoint.com</link>
	<description>Another resource for MS SharePoint information.</description>
	<lastBuildDate>Tue, 15 May 2012 14:13:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Default Quick Launch Heading Paths</title>
		<link>http://whatsthesharepoint.com/2010/04/default-quick-launch-heading-paths/</link>
		<comments>http://whatsthesharepoint.com/2010/04/default-quick-launch-heading-paths/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 15:52:57 +0000</pubDate>
		<dc:creator>David Petersen</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[best practice]]></category>
		<category><![CDATA[reference]]></category>
		<category><![CDATA[sharepoint]]></category>

		<guid isPermaLink="false">http://whatsthesharepoint.com/?p=171</guid>
		<description><![CDATA[Every so often, I come across sites that have the default Heading entries on the Quick Launch deleted.  I decided to write them down here in case I ever needed to put them back.  It&#8217;s also handy to be able to navigate to the All Items link in a site with no Quick Launch.  This [...]]]></description>
			<content:encoded><![CDATA[<p>Every so often, I come across sites that have the default Heading entries on the Quick Launch deleted.  I decided to write them down here in case I ever needed to put them back.  It&#8217;s also handy to be able to navigate to the All Items link in a site with no Quick Launch.  This is really for my reference but I hope this helps someone else out!</p>
<p><code><br />
Default Quick Launch Heading Paths</code></p>
<p><code>View All Site Content<br />
/[web url]/_layouts/viewlsts.aspx</p>
<p>Documents<br />
/[web url]/_layouts/viewlsts.aspx?BaseType=1</p>
<p>Lists<br />
/[web url]/_layouts/viewlsts.aspx?BaseType=0</p>
<p>Discussions<br />
/[web url]/_layouts/viewlsts.aspx?BaseType=0&amp;ListTemplate=108</p>
<p>Sites<br />
/[web url]/_layouts/viewlsts.aspx?ShowSites=1</p>
<p>People and Groups<br />
/[web url]/_layouts/people.aspx</p>
<p></code></p>
<p><code>Recycle Bin<br />
/[web url]/_layouts/recyclebin.aspx<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://whatsthesharepoint.com/2010/04/default-quick-launch-heading-paths/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Easy Check If An SPWeb/SPList Exist</title>
		<link>http://whatsthesharepoint.com/2010/01/easy-check-if-an-spwebsplist-exist/</link>
		<comments>http://whatsthesharepoint.com/2010/01/easy-check-if-an-spwebsplist-exist/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 21:57:00 +0000</pubDate>
		<dc:creator>David Petersen</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[best practice]]></category>
		<category><![CDATA[sharepoint]]></category>

		<guid isPermaLink="false">http://whatsthesharepoint.com/?p=100</guid>
		<description><![CDATA[I write a lot of code using the SharePoint object model.  Often times, I want to check to see if a particular Web exists in a Site Collection or a List exists in a Web.  I used to write methods that enumerated through the collection to see if they existed or I wrapped a Try-Catch [...]]]></description>
			<content:encoded><![CDATA[<p>I write a lot of code using the SharePoint object model.  Often times, I want to check to see if a particular Web exists in a Site Collection or a List exists in a Web.  I used to write methods that enumerated through the collection to see if they existed or I wrapped a Try-Catch block around the code in case the object didn&#8217;t exist.</p>
<p>Recently I came across a code snippet that made checking for the existence of a web or list easy.  I can&#8217;t remember where I found it so I&#8217;ll thank the nameless person who originally wrote the code.  I&#8217;m only capturing it here for my own reference and possibly help someone else.</p>
<pre lang="csharp" line="0">

        static bool ListExists(SPWeb web, string listName)
        {
            return web.Lists.Cast<SPList>().Any(list => string.Equals(list.Title, listName));
        }

        static bool WebExists(SPSite site, string webName)
        {
            return site.AllWebs.Cast<SPWeb>().Any(web => string.Equals(web.Name, webName));
        }
</pre>
]]></content:encoded>
			<wfw:commentRss>http://whatsthesharepoint.com/2010/01/easy-check-if-an-spwebsplist-exist/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>SharePoint Saturday &#8211; Kansas City</title>
		<link>http://whatsthesharepoint.com/2009/12/sharepoint-saturday-kansas-city/</link>
		<comments>http://whatsthesharepoint.com/2009/12/sharepoint-saturday-kansas-city/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 18:53:15 +0000</pubDate>
		<dc:creator>David Petersen</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Install]]></category>
		<category><![CDATA[architecture]]></category>
		<category><![CDATA[best practice]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[deployment]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[reference]]></category>
		<category><![CDATA[sharepoint]]></category>
		<category><![CDATA[sharepoint saturday]]></category>
		<category><![CDATA[slidedecks]]></category>
		<category><![CDATA[slides]]></category>
		<category><![CDATA[spskc]]></category>

		<guid isPermaLink="false">http://whatsthesharepoint.com/?p=65</guid>
		<description><![CDATA[I presented &#8220;What I Wish I Knew Before I Implemented SharePoint&#8221; at SharePoint Saturday in Kansas City on 12/12/2009.  This is a 100-level presentation that is meant to be a general overview of the process of implementing SharePoint. I enjoyed my time there and for those in my session, you can download the slide-deck here. [...]]]></description>
			<content:encoded><![CDATA[<p>I presented &#8220;What I Wish I Knew Before I Implemented SharePoint&#8221; at SharePoint Saturday in Kansas City on 12/12/2009.  This is a 100-level presentation that is meant to be a general overview of the process of implementing SharePoint.</p>
<p>I enjoyed my time there and for those in my session, you can download the slide-deck <a href="http://whatsthesharepoint.com/wp/wp-content/uploads/2010/02/SharePoint-Saturday-KC-2009-I-Wish-Id-Known-That.pdf">here</a>.</p>
<p>Also, for reference, here are a list of links that I referenced during the session.</p>
<p><a href="http://www.sharepointshepherd.com" target="_blank">SharePoint Shepherds Guide for End Users</a></p>
<p><a href="http://EndUserSharePoint.com" target="_blank">EndUserSharePoint.com</a></p>
<p><a href="http://www.microsoft.com/licensing/software-assurance/packaged-services.aspx " target="_blank">SharePoint Deployment Planning Services</a></p>
<p><a href="http://sharepoint.microsoft.com " target="_blank">SharePoint Website at Microsoft</a></p>
<p><a href="http://www.wssdemo.com" target="_blank">WSSDemo.com</a></p>
<p>Slide Deck: <a href="http://whatsthesharepoint.com/wp/wp-content/uploads/2010/02/SharePoint-Saturday-KC-2009-I-Wish-Id-Known-That.pdf">SharePoint Saturday KC 2009 I Wish Id Known That</a></p>
<p>You can also get my contact information from my tag.</p>
<p>********  UPDATE ***********</p>
<p>I was informed that my tag was password protected.  Lo-and-behold, it was and so I created a new tag.  This one should not be password protected.</p>
<p>******** UPDATE ************</p>
<p><a href="http://whatsthesharepoint.com/wp/wp-content/uploads/2009/12/Contact_Card_20091217164046.png"><img class="alignleft size-full wp-image-72" title="Dave Petersen Contact" src="http://whatsthesharepoint.com/wp/wp-content/uploads/2009/12/Contact_Card_20091217164046.png" alt="Dave Petersen Contact" width="667" height="558" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://whatsthesharepoint.com/2009/12/sharepoint-saturday-kansas-city/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint Install Smooth Sailing!</title>
		<link>http://whatsthesharepoint.com/2009/09/sharepoint-install-smooth-sailing/</link>
		<comments>http://whatsthesharepoint.com/2009/09/sharepoint-install-smooth-sailing/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 20:52:03 +0000</pubDate>
		<dc:creator>David Petersen</dc:creator>
				<category><![CDATA[Install]]></category>
		<category><![CDATA[best practice]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[sharepoint]]></category>

		<guid isPermaLink="false">http://whatsthesharepoint.com/?p=32</guid>
		<description><![CDATA[This is a great reference for when you are installing SharePoint. A great reference for all of the different User accounts needed by SharePoint. Best Practice for User Accounts When Installing MOSS]]></description>
			<content:encoded><![CDATA[<p>This is a great reference for when you are installing SharePoint.  A great reference for all of the different User accounts needed by SharePoint.</p>
<p><a href="http://www.paulswider.com/best-practice-for-user-accounts-when-installing-moss.html">Best Practice for User Accounts When Installing MOSS</a></p>
]]></content:encoded>
			<wfw:commentRss>http://whatsthesharepoint.com/2009/09/sharepoint-install-smooth-sailing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

