<?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 of the Day &#187; Best Practice</title>
	<atom:link href="http://www.understandingsharepoint.com/spotd/tag/best-practice/feed" rel="self" type="application/rss+xml" />
	<link>http://www.understandingsharepoint.com/spotd</link>
	<description>Your daily dose of SharePoint - From Spot D</description>
	<lastBuildDate>Fri, 26 Jun 2009 02:21:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>SharePoint of the Day #61</title>
		<link>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-61</link>
		<comments>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-61#comments</comments>
		<pubDate>Wed, 24 Jun 2009 03:26:11 +0000</pubDate>
		<dc:creator>spotd</dc:creator>
				<category><![CDATA[Developer]]></category>
		<category><![CDATA[Best Practice]]></category>

		<guid isPermaLink="false">http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-61</guid>
		<description><![CDATA[If you iterate through the AllWebs collection of a site collection you must remember to call Dispose() on the SPWeb objects you retrieve. Otherwise you will have a memory leak.
  Delicious  Digg This Post

You are free to use this tip if you give proper credit to me by linking back to the site [...]]]></description>
			<content:encoded><![CDATA[<p>If you iterate through the AllWebs collection of a site collection you must remember to call Dispose() on the SPWeb objects you retrieve. Otherwise you will have a memory leak.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=spotd+SharePoint+of+the+Day+%2361+http://is.gd/46dRk" title="Post to Twitter"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-twitter-big1.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-61&amp;title=SharePoint+of+the+Day+%2361" title="Post to Delicious"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-delicious-big4.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-61&amp;title=SharePoint+of+the+Day+%2361" title="Post to Delicious">Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-61&amp;title=SharePoint+of+the+Day+%2361" title="Post to Digg"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-digg-big4.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-61&amp;title=SharePoint+of+the+Day+%2361" title="Post to Digg">Digg This Post</a></p><hr />
<p style="font-weight: bolder;">
You are free to use this tip if you give proper credit to me by linking back to the site at http://www.understandingsharepoint.com/spotd. If you don't, I will bark all night outside your window and chase your cat up in a tree.
</p>
<p><small>© spotd for <a href="http://www.understandingsharepoint.com/spotd">SharePoint of the Day</a>, 2009. <br/>
<a href="http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-61">Permalink</a> | <a href="http://twitter.com/home/?status=#spotd+SharePoint of the Day #61">Tweet SharePoint of the Day #61</a> | 
<a href="http://del.icio.us/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-61&title=SharePoint of the Day #61">Add to del.icio.us</a> | 
<a href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-61&title=SharePoint of the Day #61">Digg this</a>
<br/>
Post tags: <a href="http://www.understandingsharepoint.com/spotd/tag/best-practice" rel="tag">Best Practice</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-61/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint of the Day #48</title>
		<link>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-48</link>
		<comments>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-48#comments</comments>
		<pubDate>Fri, 05 Jun 2009 03:26:11 +0000</pubDate>
		<dc:creator>spotd</dc:creator>
				<category><![CDATA[Developer]]></category>
		<category><![CDATA[Best Practice]]></category>

		<guid isPermaLink="false">http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-48</guid>
		<description><![CDATA[Never dispose objects received through SPContext.Current. Doing so will dispose objects used by other code and may cause your application or page to crash.
  Delicious  Digg This Post

You are free to use this tip if you give proper credit to me by linking back to the site at http://www.understandingsharepoint.com/spotd. If you don't, I [...]]]></description>
			<content:encoded><![CDATA[<p>Never dispose objects received through SPContext.Current. Doing so will dispose objects used by other code and may cause your application or page to crash.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=spotd+SharePoint+of+the+Day+%2348+http://is.gd/4cEI1" title="Post to Twitter"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-twitter-big1.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-48&amp;title=SharePoint+of+the+Day+%2348" title="Post to Delicious"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-delicious-big4.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-48&amp;title=SharePoint+of+the+Day+%2348" title="Post to Delicious">Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-48&amp;title=SharePoint+of+the+Day+%2348" title="Post to Digg"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-digg-big4.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-48&amp;title=SharePoint+of+the+Day+%2348" title="Post to Digg">Digg This Post</a></p><hr />
<p style="font-weight: bolder;">
You are free to use this tip if you give proper credit to me by linking back to the site at http://www.understandingsharepoint.com/spotd. If you don't, I will bark all night outside your window and chase your cat up in a tree.
</p>
<p><small>© spotd for <a href="http://www.understandingsharepoint.com/spotd">SharePoint of the Day</a>, 2009. <br/>
<a href="http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-48">Permalink</a> | <a href="http://twitter.com/home/?status=#spotd+SharePoint of the Day #48">Tweet SharePoint of the Day #48</a> | 
<a href="http://del.icio.us/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-48&title=SharePoint of the Day #48">Add to del.icio.us</a> | 
<a href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-48&title=SharePoint of the Day #48">Digg this</a>
<br/>
Post tags: <a href="http://www.understandingsharepoint.com/spotd/tag/best-practice" rel="tag">Best Practice</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-48/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint of the Day #38</title>
		<link>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-38</link>
		<comments>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-38#comments</comments>
		<pubDate>Fri, 22 May 2009 03:26:11 +0000</pubDate>
		<dc:creator>spotd</dc:creator>
				<category><![CDATA[Developer]]></category>
		<category><![CDATA[Best Practice]]></category>

		<guid isPermaLink="false">http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-38</guid>
		<description><![CDATA[Microsoft&#8217;s SharePoint Dispose Checker Tool really helps you find potential problems with disposing SharePoint objects in your code.
You can download the SharePoint Dispose Checker Tool from MSDN code library.
  Delicious  Digg This Post

You are free to use this tip if you give proper credit to me by linking back to the site at [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft&#8217;s SharePoint Dispose Checker Tool really helps you find potential problems with disposing SharePoint objects in your code.</p>
<p>You can download the SharePoint Dispose Checker Tool from <a href="http://code.msdn.microsoft.com/SPDisposeCheck">MSDN code library<a>.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=spotd+SharePoint+of+the+Day+%2338+http://is.gd/4cEI2" title="Post to Twitter"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-twitter-big1.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-38&amp;title=SharePoint+of+the+Day+%2338" title="Post to Delicious"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-delicious-big4.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-38&amp;title=SharePoint+of+the+Day+%2338" title="Post to Delicious">Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-38&amp;title=SharePoint+of+the+Day+%2338" title="Post to Digg"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-digg-big4.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-38&amp;title=SharePoint+of+the+Day+%2338" title="Post to Digg">Digg This Post</a></p><hr />
<p style="font-weight: bolder;">
You are free to use this tip if you give proper credit to me by linking back to the site at http://www.understandingsharepoint.com/spotd. If you don't, I will bark all night outside your window and chase your cat up in a tree.
</p>
<p><small>© spotd for <a href="http://www.understandingsharepoint.com/spotd">SharePoint of the Day</a>, 2009. <br/>
<a href="http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-38">Permalink</a> | <a href="http://twitter.com/home/?status=#spotd+SharePoint of the Day #38">Tweet SharePoint of the Day #38</a> | 
<a href="http://del.icio.us/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-38&title=SharePoint of the Day #38">Add to del.icio.us</a> | 
<a href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-38&title=SharePoint of the Day #38">Digg this</a>
<br/>
Post tags: <a href="http://www.understandingsharepoint.com/spotd/tag/best-practice" rel="tag">Best Practice</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-38/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint of the Day #18</title>
		<link>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-18</link>
		<comments>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-18#comments</comments>
		<pubDate>Fri, 24 Apr 2009 03:26:11 +0000</pubDate>
		<dc:creator>spotd</dc:creator>
				<category><![CDATA[Administrator]]></category>
		<category><![CDATA[Developer]]></category>
		<category><![CDATA[Best Practice]]></category>

		<guid isPermaLink="false">http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-18</guid>
		<description><![CDATA[You should never change any of the files that ship with SharePoint, including any XML files, ASPX files, or CSS files in the 12-hive. 
If you change any of these files, Microsoft may refuse to support your SharePoint installation.
The only thing you can change is to alter the Hidden attribute of Template elements in the [...]]]></description>
			<content:encoded><![CDATA[<p>You should never change any of the files that ship with SharePoint, including any XML files, ASPX files, or CSS files in the 12-hive. </p>
<p>If you change any of these files, Microsoft may refuse to support your SharePoint installation.</p>
<p>The only thing you can change is to alter the Hidden attribute of Template elements in the default webtemp.xml file to hide or show the built-in site definitions.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=spotd+SharePoint+of+the+Day+%2318+http://is.gd/4cEI3" title="Post to Twitter"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-twitter-big1.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-18&amp;title=SharePoint+of+the+Day+%2318" title="Post to Delicious"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-delicious-big4.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-18&amp;title=SharePoint+of+the+Day+%2318" title="Post to Delicious">Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-18&amp;title=SharePoint+of+the+Day+%2318" title="Post to Digg"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-digg-big4.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-18&amp;title=SharePoint+of+the+Day+%2318" title="Post to Digg">Digg This Post</a></p><hr />
<p style="font-weight: bolder;">
You are free to use this tip if you give proper credit to me by linking back to the site at http://www.understandingsharepoint.com/spotd. If you don't, I will bark all night outside your window and chase your cat up in a tree.
</p>
<p><small>© spotd for <a href="http://www.understandingsharepoint.com/spotd">SharePoint of the Day</a>, 2009. <br/>
<a href="http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-18">Permalink</a> | <a href="http://twitter.com/home/?status=#spotd+SharePoint of the Day #18">Tweet SharePoint of the Day #18</a> | 
<a href="http://del.icio.us/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-18&title=SharePoint of the Day #18">Add to del.icio.us</a> | 
<a href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-18&title=SharePoint of the Day #18">Digg this</a>
<br/>
Post tags: <a href="http://www.understandingsharepoint.com/spotd/tag/best-practice" rel="tag">Best Practice</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-18/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SharePoint of the Day #11</title>
		<link>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-11</link>
		<comments>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-11#comments</comments>
		<pubDate>Wed, 15 Apr 2009 03:26:11 +0000</pubDate>
		<dc:creator>spotd</dc:creator>
				<category><![CDATA[Developer]]></category>
		<category><![CDATA[Best Practice]]></category>

		<guid isPermaLink="false">http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-11</guid>
		<description><![CDATA[Using tools for development, such as WSPBuilder, STSDEV, or VSeWSS, is a great way to speed up development, but not a great way to learn SharePoint development.
Start developing without these tools to learn how to create features, solutions, webparts, and event handlers, before you turn to tools to automate the process for you. This way [...]]]></description>
			<content:encoded><![CDATA[<p>Using tools for development, such as WSPBuilder, STSDEV, or VSeWSS, is a great way to speed up development, but not a great way to learn SharePoint development.</p>
<p>Start developing without these tools to learn how to create features, solutions, webparts, and event handlers, before you turn to tools to automate the process for you. This way you learn how to fix problems that may arise and you also learn how to tweak the automated code to do your bidding. </p>
<p>For example, you can teach one of your solutions to play dead, or roll over. I am really good at that.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=spotd+SharePoint+of+the+Day+%2311+http://is.gd/4bzJj" title="Post to Twitter"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-twitter-big1.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-11&amp;title=SharePoint+of+the+Day+%2311" title="Post to Delicious"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-delicious-big4.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-11&amp;title=SharePoint+of+the+Day+%2311" title="Post to Delicious">Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-11&amp;title=SharePoint+of+the+Day+%2311" title="Post to Digg"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-digg-big4.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-11&amp;title=SharePoint+of+the+Day+%2311" title="Post to Digg">Digg This Post</a></p><hr />
<p style="font-weight: bolder;">
You are free to use this tip if you give proper credit to me by linking back to the site at http://www.understandingsharepoint.com/spotd. If you don't, I will bark all night outside your window and chase your cat up in a tree.
</p>
<p><small>© spotd for <a href="http://www.understandingsharepoint.com/spotd">SharePoint of the Day</a>, 2009. <br/>
<a href="http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-11">Permalink</a> | <a href="http://twitter.com/home/?status=#spotd+SharePoint of the Day #11">Tweet SharePoint of the Day #11</a> | 
<a href="http://del.icio.us/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-11&title=SharePoint of the Day #11">Add to del.icio.us</a> | 
<a href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-11&title=SharePoint of the Day #11">Digg this</a>
<br/>
Post tags: <a href="http://www.understandingsharepoint.com/spotd/tag/best-practice" rel="tag">Best Practice</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-11/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

