<?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 Server &#187; Sharepoint 2010</title>
	<atom:link href="http://www.fivenumber.com/category/sharepoint-2010/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fivenumber.com</link>
	<description>It&#039;s all about SharePoint</description>
	<lastBuildDate>Tue, 03 Jan 2012 16:33:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<image>
<link>http://www.fivenumber.com</link>
<url>http://www.fivenumber.com/wp-content/mbp-favicon/5.jpg</url>
<title>Sharepoint Server</title>
</image>
		<item>
		<title>Most Common Custom WebParts Part 4 – Flash Media WebPart</title>
		<link>http://www.fivenumber.com/most-common-custom-webparts-part-4-%e2%80%93-flash-media-webpart/</link>
		<comments>http://www.fivenumber.com/most-common-custom-webparts-part-4-%e2%80%93-flash-media-webpart/#comments</comments>
		<pubDate>Sun, 28 Nov 2010 21:33:53 +0000</pubDate>
		<dc:creator>G Vijai Kumar</dc:creator>
				<category><![CDATA[MOSS - Object Model]]></category>
		<category><![CDATA[Sharepoint 2010]]></category>
		<category><![CDATA[SharePoint 2010 - Object Model]]></category>
		<category><![CDATA[Custom Webparts]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://www.fivenumber.com/?p=895</guid>
		<description><![CDATA[In my previous post you can view the most commonly used custom webparts, Tree View WebPart Shows Sites and Sub-Sites, Menu WebPart Shows Sites and Sub-Sites in Fly-Out Mode, Windows Media Player WebPart In this continuation series of most commonly used custom webparts, I come up with a simple Flash Player webpart which plays flash [...]]]></description>
			<content:encoded><![CDATA[<p>In my previous post you can view the most commonly used custom webparts, Tree View WebPart Shows Sites and Sub-Sites, Menu WebPart Shows Sites and Sub-Sites in Fly-Out Mode, Windows Media Player WebPart</p>
<p>In this continuation series of most commonly used custom webparts, I come up with a simple Flash Player webpart which plays flash files on Sharepoint sites, the webpart also supports to configure the properties as required.</p>
<p>Download the solution file <a title="Flash Media Player WebPart Solution" href="www.fivenumber.com/wp-content/uploads/2010/11/FlashWebPart.wsp" target="_blank">FlashWebPart.wsp</a></p>
<div id="attachment_896" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.fivenumber.com/wp-content/uploads/2010/11/18.jpg" rel="lightbox[895]"><img class="size-medium wp-image-896" title="Flash Media Player WebPart" src="http://www.fivenumber.com/wp-content/uploads/2010/11/18-300x218.jpg" alt="Flash Media Player WebPart" width="300" height="218" /></a><p class="wp-caption-text">Flash Media Player WebPart</p></div>
<div id="attachment_897" class="wp-caption aligncenter" style="width: 200px"><a href="http://www.fivenumber.com/wp-content/uploads/2010/11/33.jpg" rel="lightbox[895]"><img class="size-medium wp-image-897" title="Flash Media Player WebPart Configuration" src="http://www.fivenumber.com/wp-content/uploads/2010/11/33-190x300.jpg" alt="Flash Media Player WebPart Configuration" width="190" height="300" /></a><p class="wp-caption-text">Flash Media Player WebPart Configuration</p></div>
<pre class="brush: csharp; title: ; notranslate">
using System;
using System.ComponentModel;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using Microsoft.SharePoint;
using Microsoft.SharePoint.WebControls;

namespace FlashWebPart.Flash
{
    [ToolboxItemAttribute(false)]
    public class Flash : WebPart
    {
        // Visual Studio might automatically update this path when you change the Visual Web Part project item.
        //private const string _ascxPath = @&quot;~/_CONTROLTEMPLATES/FlashWebPart/Flash/FlashWebPartUserControl.ascx&quot;;

        private string flashFilePath = &quot;http://www.adobe.com/content/dam/Adobe/en/devnet/flash/samples/time_1/1_timer.swf&quot;;
        private string flashWidth = &quot;320&quot;;
        private string flashHeight = &quot;240&quot;;
        private string bgColor = string.Empty;
        private bool loopPlayBack = true;

        [WebBrowsable(true),
        Personalizable(PersonalizationScope.User),
        WebDescription(&quot;Specifies the media file location&quot;),
        Category(&quot;Flash Media Properties&quot;),
        WebDisplayName(&quot;Media File Location&quot;)]
        public string FlashFilePath
        {
            get { return flashFilePath; }
            set { flashFilePath = value; }
        }

        [WebBrowsable(true),
        Personalizable(PersonalizationScope.User),
        WebDescription(&quot;Sets the width of the Media player&quot;),
        Category(&quot;Flash Media Properties&quot;),
        WebDisplayName(&quot;Width&quot;)]
        public string FlashWidth
        {
            get { return flashWidth; }
            set { flashWidth = value; }
        }

        [WebBrowsable(true),
        Personalizable(PersonalizationScope.User),
        WebDescription(&quot;Sets the height of the Media player&quot;),
        Category(&quot;Flash Media Properties&quot;),
        WebDisplayName(&quot;Height&quot;)]
        public string FlashHeight
        {
            get { return flashHeight; }
            set { flashHeight = value; }
        }

        [WebBrowsable(true),
        Personalizable(PersonalizationScope.User),
        WebDescription(&quot;Background Color: Specifies the back color&quot;),
        Category(&quot;Flash Media Properties&quot;),
        WebDisplayName(&quot;Background Color&quot;)]
        public string BGColor
        {
            get { return bgColor; }
            set { bgColor = value; }
        }

        [WebBrowsable(true),
        Personalizable(PersonalizationScope.User),
        WebDescription(&quot;Loop Play Back: (True/False) Repeats the video automatically&quot;),
        Category(&quot;Flash Media Properties&quot;),
        WebDisplayName(&quot;Loop Play Back&quot;)]
        public bool LoopPlayBack
        {
            get { return loopPlayBack; }
            set { loopPlayBack = value; }
        }

        //protected override void CreateChildControls()
        //{
        //    Control control = Page.LoadControl(_ascxPath);
        //    Controls.Add(control);
        //}

        protected override void Render(HtmlTextWriter writer)
        {
            SPSite site = null;
            SPWeb web = SPContext.Current.Web;
            if (!string.IsNullOrEmpty(FlashFilePath) &amp;&amp; !string.IsNullOrEmpty(FlashWidth) &amp;&amp; !string.IsNullOrEmpty(FlashHeight))
            {
                try
                {
                    SPSecurity.RunWithElevatedPrivileges(delegate()
                    {
                        site = new SPSite(web.Site.ID);

                        using (site)
                        {
                            #region Script
                            writer.Write(&quot;&lt;OBJECT classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width='&quot; + FlashWidth + &quot;' height='&quot; + FlashWidth + &quot;'&gt;&quot;);
                            writer.Write(&quot;&lt;param name='movie' value='&quot; + FlashFilePath + &quot;'&gt;&quot;);
                            writer.Write(&quot;&lt;param name='bgcolor' value='&quot; + BGColor + &quot;'&gt;&quot;);
                            writer.Write(&quot;&lt;param name='loop' value='&quot; + LoopPlayBack + &quot;'&gt;&quot;);
                            writer.Write(&quot;&lt;EMBED src='&quot; + FlashFilePath + &quot;' quality='high' bgcolor='#FFFFFF' width='&quot; + FlashWidth + &quot;' height='&quot; + FlashHeight + &quot;' loop='&quot; + LoopPlayBack + &quot;' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash'&gt;&quot;);
                            writer.Write(&quot;&lt;/EMBED&gt;&quot;);
                            writer.Write(&quot;&lt;/OBJECT&gt;&quot;);
                            #endregion
                        }
                    });
                }
                catch (Exception ex)
                {
                    writer.Write(ex.Message);
                }
            }
            else
            {
                writer.Write(&quot;&lt;span class='ms-formvalidation'&gt;&quot;);
                writer.Write(&quot;Please configure the &lt;B&gt;Media WebPart&lt;/B&gt; properties in webpart properties section&quot;);
                writer.Write(&quot;&lt;/span&gt;&quot;);
            }
        }
    }
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.fivenumber.com/most-common-custom-webparts-part-4-%e2%80%93-flash-media-webpart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connecting an Excel SpreadSheet to SharePoint 2010 list</title>
		<link>http://www.fivenumber.com/connecting-an-excel-spreadsheet-to-sharepoint-2010-list/</link>
		<comments>http://www.fivenumber.com/connecting-an-excel-spreadsheet-to-sharepoint-2010-list/#comments</comments>
		<pubDate>Tue, 02 Nov 2010 06:55:24 +0000</pubDate>
		<dc:creator>G Vijai Kumar</dc:creator>
				<category><![CDATA[Sharepoint 2010]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://www.fivenumber.com/?p=844</guid>
		<description><![CDATA[Sharepoint 2010 has a feature of connecting an Excel workbook Whenever an item is added/updated/deleted in SharPoint list the record is also added/updated/deleted in the connected Excel workbook In this example we will see how to connect an Excel workbook to SharePoint list Initially I have created a simple SharePoint custom list with few records [...]]]></description>
			<content:encoded><![CDATA[<p>Sharepoint 2010 has a feature of connecting an Excel workbook<br />
Whenever an item is added/updated/deleted in SharPoint list the record is also added/updated/deleted in the connected Excel workbook<br />
In this example we will see how to connect an Excel workbook to SharePoint list</p>
<p>Initially I have created a simple SharePoint custom list with few records in that, the list contains four columns <strong>Title</strong> (default column), <strong>Employee Name</strong> (single line text), <strong>Designation </strong>(choice filed), <strong>Department </strong>(choice field)<br />
(See in<strong> </strong>Figure 1)</p>
<div id="attachment_845" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.fivenumber.com/wp-content/uploads/2010/11/1.jpg" rel="lightbox[844]"><img class="size-medium wp-image-845" title="Figure 1 - Simple SharePoint Custom List" src="http://www.fivenumber.com/wp-content/uploads/2010/11/1-300x77.jpg" alt="Figure 1 - Simple SharePoint Custom List" width="300" height="77" /></a><p class="wp-caption-text">Figure 1 - Simple SharePoint Custom List</p></div>
<p>Now, we are ready to connect, click on <strong>List</strong> then click <strong>Export to Excel</strong> option (see Figure 2)</p>
<div id="attachment_846" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.fivenumber.com/wp-content/uploads/2010/11/2.jpg" rel="lightbox[844]"><img class="size-medium wp-image-846" title="Figure 2 - Click on Export to Excel" src="http://www.fivenumber.com/wp-content/uploads/2010/11/2-300x130.jpg" alt="Figure 2 - Click on Export to Excel" width="300" height="130" /></a><p class="wp-caption-text">Figure 2 - Click on Export to Excel</p></div>
<p>A file download window pops, click on <strong>Save</strong> (see Figure 3)</p>
<div id="attachment_847" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.fivenumber.com/wp-content/uploads/2010/11/3.jpg" rel="lightbox[844]"><img class="size-medium wp-image-847" title="Figure 3 - File Download Window, Click Save" src="http://www.fivenumber.com/wp-content/uploads/2010/11/3-300x144.jpg" alt="Figure 3 - File Download Window, Click Save" width="300" height="144" /></a><p class="wp-caption-text">Figure 3 - File Download Window, Click Save</p></div>
<p>Save the file in some location (in this example I have saved in E:\Employee location) (see Figure 4)</p>
<div id="attachment_848" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.fivenumber.com/wp-content/uploads/2010/11/4.jpg" rel="lightbox[844]"><img class="size-medium wp-image-848" title="Figure 4 - Saving Excel Web Query File" src="http://www.fivenumber.com/wp-content/uploads/2010/11/4-300x201.jpg" alt="Figure 4 - Saving Excel Web Query File" width="300" height="201" /></a><p class="wp-caption-text">Figure 4 - Saving Excel Web Query File</p></div>
<p>Then open the saved<strong> Excel Web Query</strong> file from the location where you saved or click on the<strong> Open</strong> button in download dialog window (see Figure 5)</p>
<div id="attachment_849" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.fivenumber.com/wp-content/uploads/2010/11/51.jpg" rel="lightbox[844]"><img class="size-medium wp-image-849" title="Figure 5 - Open the downloaded file" src="http://www.fivenumber.com/wp-content/uploads/2010/11/51-300x229.jpg" alt="Figure 5 - Open the downloaded file" width="300" height="229" /></a><p class="wp-caption-text">Figure 5 - Open the downloaded file</p></div>
<p>While the <strong>Excel Web Query File</strong> is opening you can view the <strong>Microsoft Excel Security Notice</strong> (the dialog window says warning about the data connection) click on <strong>Enable </strong>(see Figure 6)</p>
<div id="attachment_850" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.fivenumber.com/wp-content/uploads/2010/11/6.jpg" rel="lightbox[844]"><img class="size-medium wp-image-850" title="Figure 6 - Enable Data Connections" src="http://www.fivenumber.com/wp-content/uploads/2010/11/6-300x207.jpg" alt="Figure 6 - Enable Data Connections" width="300" height="207" /></a><p class="wp-caption-text">Figure 6 - Enable Data Connections</p></div>
<p>As soon as you click on <strong>Enable </strong>button you can view the SharePoint list data in the<strong> Excel Web Query File</strong> (see Figure 7)</p>
<div id="attachment_851" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.fivenumber.com/wp-content/uploads/2010/11/7.jpg" rel="lightbox[844]"><img class="size-medium wp-image-851" title="Figure 7 - Excel Web Query File, Shows SharePoint List Data" src="http://www.fivenumber.com/wp-content/uploads/2010/11/7-300x162.jpg" alt="Figure 7 - Excel Web Query File, Shows SharePoint List Data" width="300" height="162" /></a><p class="wp-caption-text">Figure 7 - Excel Web Query File, Shows SharePoint List Data</p></div>
<p>Now we have to set the data connection to this workbook, to do that select<strong> Data</strong> menu and click on <strong>Connections </strong>(see Figure 8 )</p>
<div id="attachment_852" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.fivenumber.com/wp-content/uploads/2010/11/8.jpg" rel="lightbox[844]"><img class="size-medium wp-image-852" title="Figure 8 - Data Connections for the workbook" src="http://www.fivenumber.com/wp-content/uploads/2010/11/8-300x153.jpg" alt="Figure 8 - Data Connections for the workbook" width="300" height="153" /></a><p class="wp-caption-text">Figure 8 - Data Connections for the workbook</p></div>
<p>A <strong>Workbook Connections</strong> window opens, select the workbook name and click on <strong>Properties </strong>(see Figure 9)</p>
<div id="attachment_853" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.fivenumber.com/wp-content/uploads/2010/11/9.jpg" rel="lightbox[844]"><img class="size-medium wp-image-853" title="Figure 9 - Workbook Connections" src="http://www.fivenumber.com/wp-content/uploads/2010/11/9-300x213.jpg" alt="Figure 9 - Workbook Connections" width="300" height="213" /></a><p class="wp-caption-text">Figure 9 - Workbook Connections</p></div>
<p>Then in <strong>Connection Properties</strong> dialog box select <strong>Enable background refresh </strong>and <strong>Refresh data when opening the file</strong>, then click <strong>OK </strong>(see Figure 10)</p>
<div id="attachment_854" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.fivenumber.com/wp-content/uploads/2010/11/10.jpg" rel="lightbox[844]"><img class="size-medium wp-image-854" title="Figure 10 - Settings the Connection Properties" src="http://www.fivenumber.com/wp-content/uploads/2010/11/10-300x223.jpg" alt="Figure 10 - Settings the Connection Properties" width="300" height="223" /></a><p class="wp-caption-text">Figure 10 - Settings the Connection Properties</p></div>
<p>Now we have to save the Excel file in a trusted location, so before saving the Excel file first we have to specify a trusted location, to do that Select <strong>File </strong>menu and click on <strong>Options </strong>(see Figure 11)</p>
<div id="attachment_855" class="wp-caption aligncenter" style="width: 290px"><a href="http://www.fivenumber.com/wp-content/uploads/2010/11/11.jpg" rel="lightbox[844]"><img class="size-medium wp-image-855" title="Figure 11 - Specifying Trusted Location" src="http://www.fivenumber.com/wp-content/uploads/2010/11/11-280x300.jpg" alt="Figure 11 - Specifying Trusted Location" width="280" height="300" /></a><p class="wp-caption-text">Figure 11 - Specifying Trusted Location</p></div>
<p>In<strong> Excel Options</strong> window select<strong> Trust Center</strong> and click on <strong>Trust Center Settings</strong> (see Figure 12)</p>
<div id="attachment_856" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.fivenumber.com/wp-content/uploads/2010/11/12.jpg" rel="lightbox[844]"><img class="size-medium wp-image-856" title="Figure 12 - Specifying Trusted Location" src="http://www.fivenumber.com/wp-content/uploads/2010/11/12-300x242.jpg" alt="Figure 12 - Specifying Trusted Location" width="300" height="242" /></a><p class="wp-caption-text">Figure 12 - Specifying Trusted Location</p></div>
<p>In <strong>Trust Center</strong> dialog window select <strong>Trusted Locations</strong> and click on <strong>Add new locations</strong>, specify a path for trusted source, then click  <strong>OK </strong>(see Figure 13)</p>
<div id="attachment_857" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.fivenumber.com/wp-content/uploads/2010/11/13.jpg" rel="lightbox[844]"><img class="size-medium wp-image-857" title="Figure 13 - Spedifying Trusted Location" src="http://www.fivenumber.com/wp-content/uploads/2010/11/13-300x241.jpg" alt="Figure 13 - Specifying Trusted Location" width="300" height="241" /></a><p class="wp-caption-text">Figure 13 - Specifying Trusted Location</p></div>
<p>Click <strong>OK </strong>on <strong>Trust Center</strong> window, click <strong>OK </strong>on <strong>Excel Options</strong> window, then save the Excel workbook in some location, in this example I&#8217;m saving the Excel file in the same location (E:\Employees) where Excel Web Query File was saved</p>
<p>Now I will try to add the new Item in the SharePoint list, so we will see whether item is added in the Excel spread sheet (see Figure 14)</p>
<div id="attachment_858" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.fivenumber.com/wp-content/uploads/2010/11/14.jpg" rel="lightbox[844]"><img class="size-medium wp-image-858" title="Figure 14 - Adding Item in Sharepoint List" src="http://www.fivenumber.com/wp-content/uploads/2010/11/14-300x203.jpg" alt="Figure 14 - Adding Item in Sharepoint List" width="300" height="203" /></a><p class="wp-caption-text">Figure 14 - Adding Item in Sharepoint List</p></div>
<p>Now I can see the newly item added SharePoint list is also updated in the Excel workbook (see Figure 14)</p>
<div id="attachment_859" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.fivenumber.com/wp-content/uploads/2010/11/15.jpg" rel="lightbox[844]"><img class="size-medium wp-image-859" title="Figure 15 - Item Updated in the Connected Excel Workbook" src="http://www.fivenumber.com/wp-content/uploads/2010/11/15-300x185.jpg" alt="Figure 15 - Item Updated in the Connected Excel Workbook" width="300" height="185" /></a><p class="wp-caption-text">Figure 15 - Item Updated in the Connected Excel Workbook</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.fivenumber.com/connecting-an-excel-spreadsheet-to-sharepoint-2010-list/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Most Common Custom WebParts Part 2 – Menu WebPart Shows Sites and Sub-Sites in Fly-Out Mode</title>
		<link>http://www.fivenumber.com/most-common-custom-webparts-part-2-%e2%80%93-menu-webpart-shows-sites-and-sub-sites-in-fly-out-mode/</link>
		<comments>http://www.fivenumber.com/most-common-custom-webparts-part-2-%e2%80%93-menu-webpart-shows-sites-and-sub-sites-in-fly-out-mode/#comments</comments>
		<pubDate>Fri, 29 Oct 2010 05:12:49 +0000</pubDate>
		<dc:creator>G Vijai Kumar</dc:creator>
				<category><![CDATA[MOSS - Object Model]]></category>
		<category><![CDATA[Sharepoint 2010]]></category>
		<category><![CDATA[SharePoint 2010 - Object Model]]></category>
		<category><![CDATA[Custom Webparts]]></category>
		<category><![CDATA[object model]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://www.fivenumber.com/?p=832</guid>
		<description><![CDATA[In my previous post can view the most common custom webparts part 1 From last post I want to continue the series of most commonly used custom webparts, so once again I come up with a simple and small custom menu webpart shows all the sites and sub-sites of a SharePoint site in fly-out style]]></description>
			<content:encoded><![CDATA[<p>In my previous post can view the <a title="Most common custom webparts part 1" href="http://www.fivenumber.com/most-common-custom-webparts-part1-tree-view-webpart-shows-sites-and-sub-sites/" target="_blank">most common custom webparts part 1</a></p>
<p>From last post I want to continue the series of most commonly used custom webparts, so once again I come up with a simple and small custom menu webpart shows all the sites and sub-sites of a SharePoint site in fly-out style</p>
<div id="attachment_833" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.fivenumber.com/wp-content/uploads/2010/10/11.png" rel="lightbox[832]"><img class="size-medium wp-image-833" title="SharePoint Menu WebPart in fly-Out Style" src="http://www.fivenumber.com/wp-content/uploads/2010/10/11-300x225.png" alt="SharePoint Menu WebPart in fly-Out Style" width="300" height="225" /></a><p class="wp-caption-text">SharePoint Menu WebPart in fly-Out Style</p></div>
<pre class="brush: csharp; title: ; notranslate">
using System;
using System.ComponentModel;
using System.Web;
using System.Drawing;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using Microsoft.SharePoint;
using Microsoft.SharePoint.WebControls;

namespace CustomWebParts.VisualWebPart1
{
    [ToolboxItemAttribute(false)]
    public class VisualWebPart1 : WebPart
    {
        // Visual Studio might automatically update this path when you change the Visual Web Part project item.
       // private const string _ascxPath = @&quot;~/_CONTROLTEMPLATES/CustomWebParts/TreeView/TreeViewUserControl.ascx&quot;;

        System.Web.UI.WebControls.Menu menu = null;

        protected override void CreateChildControls()
        {
            //Control control = Page.LoadControl(_ascxPath);
            //Controls.Add(control);

            menu = new System.Web.UI.WebControls.Menu();
            SPSite site = SPContext.Current.Site;
            SPWeb web = SPContext.Current.Web;

            menu.StaticDisplayLevels = 1;
            menu.MaximumDynamicDisplayLevels = 200;
            menu.Orientation = System.Web.UI.WebControls.Orientation.Horizontal;
            menu.StaticEnableDefaultPopOutImage = false;
            menu.StaticPopOutImageUrl = &quot;/_layouts/images/menudark.gif&quot;;
            menu.SkipLinkText = &quot;&quot;;
            menu.DynamicHoverStyle.BackColor = System.Drawing.Color.FromName(&quot;#CBE3F0&quot;);
            menu.CssClass = &quot;ms-topNavContainer&quot;;

            menu.StaticMenuItemStyle.ItemSpacing = Unit.Pixel(0);
            menu.StaticSelectedStyle.CssClass = &quot;ms-topnavselected&quot;;
            menu.StaticHoverStyle.CssClass = &quot;ms-topNavHover&quot;;

            menu.DynamicMenuStyle.BackColor = System.Drawing.Color.FromName(&quot;#F2F3F4&quot;);
            menu.DynamicMenuStyle.BorderColor = System.Drawing.Color.FromName(&quot;#A7B4CE&quot;);
            menu.DynamicMenuStyle.BorderWidth = Unit.Pixel(1);

            menu.DynamicMenuItemStyle.CssClass = &quot;ms-topNavFlyOuts&quot;;
            menu.DynamicHoverStyle.CssClass = &quot;ms-topNavFlyOutsHover&quot;;
            menu.DynamicSelectedStyle.CssClass = &quot;ms-topNavFlyOutsSelected&quot;;

            MenuItemStyle stMenuStyle = menu.StaticMenuItemStyle;
            stMenuStyle.CssClass = &quot;ms-topnav&quot;;

            stMenuStyle.HorizontalPadding = 0;
            stMenuStyle.VerticalPadding = 0;
            stMenuStyle.ItemSpacing = Unit.Pixel(0);

            MenuItemStyle dyMenuStyle = menu.DynamicMenuItemStyle;
            dyMenuStyle.CssClass = &quot;ms-topNavFlyOuts&quot;;
            dyMenuStyle.HorizontalPadding = 0;
            dyMenuStyle.VerticalPadding = 0;

            System.Web.UI.WebControls.MenuItem mItem = new System.Web.UI.WebControls.MenuItem(web.Title);
            mItem.NavigateUrl = web.Site.Url;
            menu.Items.Add(mItem);

            GenerateMenu(menu, Context);
            menu.DataBind();
            this.Controls.Add(menu);
        }

        public static void GenerateMenu(System.Web.UI.WebControls.Menu menu, HttpContext context)
        {
            SPSite site = SPContext.Current.Site;
            SPWeb web = SPContext.Current.Web;

            foreach (SPWeb subsite in web.Webs)
            {
                System.Web.UI.WebControls.MenuItem mItem = new System.Web.UI.WebControls.MenuItem();
                mItem.NavigateUrl = subsite.Url;
                mItem.Text = subsite.Title;
                mItem.ToolTip = subsite.Title;
                menu.Items.Add(mItem);
                BuildMenu(subsite, mItem, context);
            }
        }

        private static void BuildMenu(SPWeb subweb, System.Web.UI.WebControls.MenuItem mItem, HttpContext context)
        {
            SPSite site = SPContext.Current.Site;
            SPWeb web = SPContext.Current.Web;

            foreach (SPWeb subsite in subweb.Webs)
            {
                System.Web.UI.WebControls.MenuItem mSubItem = new System.Web.UI.WebControls.MenuItem();
                mSubItem.NavigateUrl = subsite.Url;
                mSubItem.Text = subsite.Title;
                mSubItem.ToolTip = subsite.Title;
                mItem.ChildItems.Add(mSubItem);
            }
        }
    }
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.fivenumber.com/most-common-custom-webparts-part-2-%e2%80%93-menu-webpart-shows-sites-and-sub-sites-in-fly-out-mode/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Most Common Custom WebParts Part 1 &#8211; Tree View WebPart Shows Sites and Sub-Sites</title>
		<link>http://www.fivenumber.com/most-common-custom-webparts-part1-tree-view-webpart-shows-sites-and-sub-sites/</link>
		<comments>http://www.fivenumber.com/most-common-custom-webparts-part1-tree-view-webpart-shows-sites-and-sub-sites/#comments</comments>
		<pubDate>Fri, 29 Oct 2010 04:26:07 +0000</pubDate>
		<dc:creator>G Vijai Kumar</dc:creator>
				<category><![CDATA[MOSS - Object Model]]></category>
		<category><![CDATA[Sharepoint 2010]]></category>
		<category><![CDATA[SharePoint 2010 - Object Model]]></category>
		<category><![CDATA[Custom Webparts]]></category>
		<category><![CDATA[object model]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://www.fivenumber.com/?p=825</guid>
		<description><![CDATA[I desired to support most common custom webparts used by the SharePoint professional, so that these can be helpful for them. A custom tree view webpart shows all the sites and sub-sites of a SharePoint site Please use the below code and to get the exact look as show in the aboave image, the tree [...]]]></description>
			<content:encoded><![CDATA[<p>I desired to support most common custom webparts used by the SharePoint professional, so that these can be helpful for them.<br />
A custom tree view webpart shows all the sites and sub-sites of a SharePoint site</p>
<div id="attachment_826" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.fivenumber.com/wp-content/uploads/2010/10/1.png" rel="lightbox[825]"><img class="size-medium wp-image-826" title="SharePoint Custom Tree View WebPart" src="http://www.fivenumber.com/wp-content/uploads/2010/10/1-300x243.png" alt="SharePoint Custom Tree View WebPart" width="300" height="243" /></a><p class="wp-caption-text">SharePoint Custom Tree View WebPart</p></div>
<p>Please use the below code and to get the exact look as show in the aboave image, the tree view webpart can expand/collapse</p>
<pre class="brush: csharp; title: ; notranslate">
using System;
using System.ComponentModel;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using Microsoft.SharePoint;
using Microsoft.SharePoint.WebControls;

namespace CustomWebParts.CustomTreeView
{
    [ToolboxItemAttribute(false)]
    public class CustomTreeView : WebPart
    {
        // Visual Studio might automatically update this path when you change the Visual Web Part project item.
        //private const string _ascxPath = @&quot;~/_CONTROLTEMPLATES/CustomWebParts/CustomTreeView/CustomTreeViewUserControl.ascx&quot;;

        TreeView myTree;
        LinkButton lnkBtnExpand;
        LinkButton lnkBtnCollapse;
        Label lblPipeDivider;
        Label lbl_ErrorMsg;
        private string errorMessage = string.Empty;
        private int level = 0;

        protected override void CreateChildControls()
        {
            //Control control = Page.LoadControl(_ascxPath);
            //Controls.Add(control);

            this.Controls.Clear();
            myTree = new TreeView();
            myTree.ExpandImageUrl = &quot;/_layouts/images/tvplus.gif&quot;;
            myTree.RootNodeStyle.ImageUrl = &quot;/_layouts/images/stsicon.gif&quot;;
            myTree.ParentNodeStyle.ImageUrl = &quot;/_layouts/images/stsicon.gif&quot;;
            myTree.LeafNodeStyle.ImageUrl = &quot;/_layouts/images/stsicon.gif&quot;;
            myTree.CollapseImageUrl = &quot;/_layouts/images/tvminus.gif&quot;;
            myTree.NoExpandImageUrl = &quot;/_layouts/images/stsicon.gif&quot;;            

            myTree.NodeWrap = true;
            myTree.ShowLines = true;
            myTree.ShowExpandCollapse = true;
            myTree.EnableClientScript = true;

            GenerateTreeView();
            myTree.CollapseAll();
            myTree.CssClass = &quot;ms-navitem a&quot;;
            this.Controls.Add(myTree);

            lnkBtnExpand = new LinkButton();
            lnkBtnExpand.Click += new EventHandler(expandAll_Click);
            lnkBtnExpand.Text = &quot;Expand all&quot;;
            lnkBtnExpand.CssClass = &quot;ms-navitem a&quot;;
            this.Controls.Add(lnkBtnExpand);

            lblPipeDivider = new Label();
            lblPipeDivider.Text = &quot;  |  &quot;;
            this.Controls.Add(lblPipeDivider);

            lnkBtnCollapse = new LinkButton();
            lnkBtnCollapse.Click += new EventHandler(collapseAll_Click);
            lnkBtnCollapse.Text = &quot;Collapse all&quot;;
            lnkBtnCollapse.CssClass = &quot;ms-navitem a&quot;;
            this.Controls.Add(lnkBtnCollapse);

            lbl_ErrorMsg = new Label();
            this.Controls.Add(lbl_ErrorMsg);

            base.CreateChildControls();
        }

        private void GenerateTreeView()
        {
            SPSite mySite = null;
            SPWeb myWeb = SPContext.Current.Web;
            SPSecurity.RunWithElevatedPrivileges(delegate()
            {
                try
                {
                    mySite = new SPSite(myWeb.Site.ID);
                    using (mySite)
                    {
                        level = 1;
                        foreach (SPWeb subWeb in myWeb.Webs)
                        {
                            TreeNode myTreeNode = new TreeNode(subWeb.Title);
                            myTreeNode.NavigateUrl = subWeb.Url;
                            ReadSubSites(subWeb, ref myTreeNode);
                            myTree.Nodes.Add(myTreeNode);
                        }

                    }
                }
                catch (Exception ex)
                {
                    errorMessage = ex.ToString();
                }
            });
        }

        private void ReadSubSites(SPWeb subWeb, ref TreeNode myTreeNode)
        {
            try
            {
                foreach (SPWeb myChildSubWeb in subWeb.Webs)
                {
                    TreeNode subnode = new TreeNode(myChildSubWeb.Title);
                    subnode.NavigateUrl = myChildSubWeb.Url;

                    myTreeNode.ChildNodes.Add(subnode);

                    if (myChildSubWeb.Webs.Count &gt; 0)
                    {
                        if (myTreeNode.ChildNodes.Count &gt; 0)
                        {
                            level = level + 1;
                            TreeNode myChildNode = myTreeNode.ChildNodes[myTreeNode.ChildNodes.Count - 1];
                            ReadSubSites(myChildSubWeb, ref myChildNode);
                            level = level - 1;
                        }
                    }
                }
            }
            catch (Exception ex)
            {
                errorMessage = ex.ToString();
            }
        }

        void expandAll_Click(object sender, EventArgs e)
        {
            myTree.ExpandAll();
        }

        void collapseAll_Click(object sender, EventArgs e)
        {
            myTree.CollapseAll();
        }      

        protected override void RenderContents(HtmlTextWriter writer)
        {
            EnsureChildControls();
            lnkBtnExpand.RenderControl(writer);
            lblPipeDivider.RenderControl(writer);
            lnkBtnCollapse.RenderControl(writer);
            RenderChildren(writer);
        }
    }
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.fivenumber.com/most-common-custom-webparts-part1-tree-view-webpart-shows-sites-and-sub-sites/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>SharePoint 2010 Site Templates</title>
		<link>http://www.fivenumber.com/sharepoint-2010-site-templates/</link>
		<comments>http://www.fivenumber.com/sharepoint-2010-site-templates/#comments</comments>
		<pubDate>Tue, 11 May 2010 16:55:30 +0000</pubDate>
		<dc:creator>G Vijai Kumar</dc:creator>
				<category><![CDATA[Sharepoint 2010]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[site template]]></category>

		<guid isPermaLink="false">http://www.fivenumber.com/?p=729</guid>
		<description><![CDATA[The following are the site templates shipped with SharePoint 2010 Beta and available for creating top-level sites Collaboration Team Site Blank Site Document Workspace Blog Group Work Site Visio Process Repository Meetings Basic Meeting Workspace Blank Meeting Workspace Decision Meeting Workspace Social Meeting Workspace Multipage Meeting Workspace Enterprise Document Center Records Center Business Intelligence Center [...]]]></description>
			<content:encoded><![CDATA[<p>The following are the site templates shipped with SharePoint 2010 Beta and available for creating top-level sites</p>
<table border="1">
<tbody>
<tr>
<td style="text-align: center;"><strong>Collaboration</strong></td>
<td rowspan="7">
<p><div id="attachment_730" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.fivenumber.com/wp-content/uploads/2010/05/Collaboration.gif" rel="lightbox[729]"><img class="size-medium wp-image-730" title="List of templates under Collaboration" src="http://www.fivenumber.com/wp-content/uploads/2010/05/Collaboration-300x177.gif" alt="List of templates under Collaboration" width="300" height="177" /></a><p class="wp-caption-text">List of templates under Collaboration</p></div></td>
</tr>
<tr>
<td style="text-align: center;">Team Site</td>
</tr>
<tr>
<td style="text-align: center;">Blank Site</td>
</tr>
<tr>
<td style="text-align: center;">Document Workspace</td>
</tr>
<tr>
<td style="text-align: center;">Blog</td>
</tr>
<tr style="text-align: center;">
<td>Group Work Site</td>
</tr>
<tr>
<td style="text-align: center;">Visio Process Repository</td>
</tr>
<tr>
<td style="text-align: center;"><strong>Meetings</strong></td>
<td style="text-align: center;" rowspan="6">
<p><div id="attachment_731" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.fivenumber.com/wp-content/uploads/2010/05/Meetings.gif" rel="lightbox[729]"><img class="size-medium wp-image-731" title="List of templates under Meetings" src="http://www.fivenumber.com/wp-content/uploads/2010/05/Meetings-300x177.gif" alt="List of templates under Meetings" width="300" height="177" /></a><p class="wp-caption-text">List of templates under Meetings</p></div></td>
</tr>
<tr>
<td style="text-align: center;">Basic Meeting Workspace</td>
</tr>
<tr>
<td style="text-align: center;">Blank Meeting Workspace</td>
</tr>
<tr>
<td style="text-align: center;">Decision Meeting Workspace</td>
</tr>
<tr>
<td style="text-align: center;">Social Meeting Workspace</td>
</tr>
<tr>
<td style="text-align: center;">Multipage Meeting Workspace</td>
</tr>
<tr>
<td style="text-align: center;"><strong>Enterprise</strong></td>
<td style="text-align: center;" rowspan="8">
<p><div id="attachment_732" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.fivenumber.com/wp-content/uploads/2010/05/Enterprise.gif" rel="lightbox[729]"><img class="size-medium wp-image-732" title="List of template under Enterprise" src="http://www.fivenumber.com/wp-content/uploads/2010/05/Enterprise-300x165.gif" alt="List of template under Enterprise" width="300" height="165" /></a><p class="wp-caption-text">List of template under Enterprise</p></div></td>
</tr>
<tr>
<td style="text-align: center;">Document Center</td>
</tr>
<tr>
<td style="text-align: center;">Records Center</td>
</tr>
<tr>
<td style="text-align: center;">Business Intelligence Center</td>
</tr>
<tr>
<td style="text-align: center;">Enterprise Search Center</td>
</tr>
<tr>
<td style="text-align: center;">My Site Host</td>
</tr>
<tr>
<td style="text-align: center;">Basic Search Center</td>
</tr>
<tr>
<td style="text-align: center;">FAST Search Center</td>
</tr>
<tr>
<td style="text-align: center;"><strong>Publishing</strong></td>
<td style="text-align: center;" rowspan="3">
<p><div id="attachment_733" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.fivenumber.com/wp-content/uploads/2010/05/Publishing.gif" rel="lightbox[729]"><img class="size-medium wp-image-733" title="List of template under Publishing" src="http://www.fivenumber.com/wp-content/uploads/2010/05/Publishing-300x182.gif" alt="List of template under Publishing" width="300" height="182" /></a><p class="wp-caption-text">List of template under Publishing</p></div></td>
</tr>
<tr>
<td style="text-align: center;">Publishing Portal</td>
</tr>
<tr>
<td style="text-align: center;">Enterprise Wiki</td>
</tr>
</tbody>
</table>
<p>The following is the list site templates available in SharePoint 2010</p>
<table border="1">
<tbody>
<tr>
<td><strong>SharePoint 2010 &#8211; Site Templates</strong></td>
</tr>
<tr>
<td>Team Site</td>
</tr>
<tr>
<td>Blank Site</td>
</tr>
<tr>
<td>Document Workspace</td>
</tr>
<tr>
<td>Basic Meeting Workspace</td>
</tr>
<tr>
<td>Blank Meeting Workspace</td>
</tr>
<tr>
<td>Decision Meeting Workspace</td>
</tr>
<tr>
<td>Social Meeting Workspace</td>
</tr>
<tr>
<td>Multipage Meeting Workspace</td>
</tr>
<tr>
<td>Blog</td>
</tr>
<tr>
<td>Group Work Site <img src="http://www.fivenumber.com/wp-content/uploads/2010/05/new.gif" alt="New" /></td>
</tr>
<tr>
<td>Assets Web Database <img src="../wp-content/uploads/2010/05/new.gif" alt="New" /></td>
</tr>
<tr>
<td>Charitable Contributions Web <img src="../wp-content/uploads/2010/05/new.gif" alt="New" /><strong></strong></td>
</tr>
<tr>
<td>Contacts Web Database <img src="../wp-content/uploads/2010/05/new.gif" alt="New" /><strong></strong></td>
</tr>
<tr>
<td>Issues Web Database <img src="../wp-content/uploads/2010/05/new.gif" alt="New" /><strong></strong></td>
</tr>
<tr>
<td>Projects Web Database <img src="../wp-content/uploads/2010/05/new.gif" alt="New" /><strong></strong></td>
</tr>
<tr>
<td>Document center</td>
</tr>
<tr>
<td>Records Center</td>
</tr>
<tr>
<td>Personalization Site</td>
</tr>
<tr>
<td>Enterprise Search Center <img src="../wp-content/uploads/2010/05/new.gif" alt="New" /><strong></strong></td>
</tr>
<tr>
<td>Basic Search Center <img src="../wp-content/uploads/2010/05/new.gif" alt="New" /><strong></strong></td>
</tr>
<tr>
<td>FAST Search Center <img src="../wp-content/uploads/2010/05/new.gif" alt="New" /><strong></strong></td>
</tr>
<tr>
<td>Visio Process Repository <img src="../wp-content/uploads/2010/05/new.gif" alt="New" /><strong></strong></td>
</tr>
<tr>
<td>Business Intelligence Center <img src="../wp-content/uploads/2010/05/new.gif" alt="New" /><strong></strong></td>
</tr>
<tr>
<td>My Site Host</td>
</tr>
<tr>
<td>Enterprise Wiki <img src="../wp-content/uploads/2010/05/new.gif" alt="New" /><strong></strong></td>
</tr>
<tr>
<td>Publishing Portal</td>
</tr>
<tr>
<td>Publishing Site</td>
</tr>
<tr>
<td>Publishing Site With Workflow</td>
</tr>
</tbody>
</table>
<div id="attachment_734" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.fivenumber.com/wp-content/uploads/2010/05/All-Categories.gif" rel="lightbox[729]"><img class="size-medium wp-image-734" title="SharePoint 2010 - List of available site templates" src="http://www.fivenumber.com/wp-content/uploads/2010/05/All-Categories-300x264.gif" alt="SharePoint 2010 - List of available site templates" width="300" height="264" /></a><p class="wp-caption-text">SharePoint 2010 - List of available site templates</p></div>
<p>The following is the list of deprecated site templates</p>
<table border="1">
<tbody>
<tr>
<td>Wiki Site</td>
</tr>
<tr>
<td>Site Directory</td>
</tr>
<tr>
<td>Report Center</td>
</tr>
<tr>
<td>Search Center With Tabs</td>
</tr>
<tr>
<td>Search Center</td>
</tr>
<tr>
<td>Collaboration Portal</td>
</tr>
<tr>
<td>News Site</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.fivenumber.com/sharepoint-2010-site-templates/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What&#8217;s New in Microsoft SharePoint 2010</title>
		<link>http://www.fivenumber.com/whats-new-in-microsoft-sharepoint-2010/</link>
		<comments>http://www.fivenumber.com/whats-new-in-microsoft-sharepoint-2010/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 14:34:12 +0000</pubDate>
		<dc:creator>G Vijai Kumar</dc:creator>
				<category><![CDATA[Sharepoint 2010]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://www.fivenumber.com/?p=718</guid>
		<description><![CDATA[People who are looking for E-Learning courses and to know what&#8217;s new in Sharepoint 2010, please follow the links below and sign up for the courses, even you may download the entire course for offline viewing. Clinic 10277: What&#8217;s New in Microsoft SharePoint 2010 for Developers Developing SharePoint 2010 Solutions by Using Visual Studio 2010 [...]]]></description>
			<content:encoded><![CDATA[<p>People who are looking for E-Learning courses and to know what&#8217;s new in Sharepoint 2010, please follow the links below and sign up for the courses, even you may download the entire course for offline viewing.</p>
<div id="attachment_719" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.fivenumber.com/wp-content/uploads/2010/04/Microsoft-E-Learning.gif" rel="lightbox[718]"><img class="size-medium wp-image-719" title="Microsoft E-Learning: What's new in Sharepoint 2010" src="http://www.fivenumber.com/wp-content/uploads/2010/04/Microsoft-E-Learning-300x25.gif" alt="Microsoft E-Learning: What's new in Sharepoint 2010" width="300" height="25" /></a><p class="wp-caption-text">Microsoft E-Learning: What&#39;s new in Sharepoint 2010?</p></div>
<p><a title="What's new in Microsoft Sharepoint 2010 for Developers" href="https://www.microsoftelearning.com/eLearning/courseDetail.aspx?courseId=160329&amp;tab=overview" target="_blank">Clinic 10277: What&#8217;s New in Microsoft SharePoint 2010 for Developers</a><br />
<strong> Developing SharePoint 2010 Solutions by Using Visual Studio 2010</strong></p>
<ul>
<li> Creating SharePoint 2010 Solutions by Using Visual Studio 2010</li>
<li> Deploying SharePoint 2010 Solutions by Using Visual Studio 2010</li>
</ul>
<p><strong>Integrating New Development Features in SharePoint 2010 Solutions</strong></p>
<ul>
<li> New Process Capabilities for SharePoint 2010</li>
<li> Developing New User Interfaces for SharePoint 2010</li>
<li> Using LINQ to SharePoint</li>
</ul>
<p><strong>Developing Remote Clients for SharePoint 2010</strong></p>
<ul>
<li>Developing Remote Clients by Using the Client Object Model</li>
<li> Accessing SharePoint Data in Silverlight Applications</li>
</ul>
<p><strong>Incorporating External Data in SharePoint 2010 Solutions</strong></p>
<ul>
<li> Configuring Business Connectivity Services for SharePoint 2010</li>
</ul>
<p><a title="What's new in Microsoft Sharepoint 2010 for IT Professionals" href="https://www.microsoftelearning.com/eLearning/courseDetail.aspx?courseId=161467&amp;tab=overview" target="_blank">Clinic 10279: What&#8217;s New in Microsoft SharePoint 2010 for IT Professionals</a></p>
<p><strong>Introduction to SharePoint 2010</strong></p>
<ul>
<li> Fundamentals of SharePoint 2010</li>
<li> SharePoint 2010 User Interface Experience</li>
</ul>
<p><strong>Managing Data in SharePoint 2010</strong></p>
<ul>
<li> Using IFilters</li>
<li> Managing Lists with Large List Resource Throttling</li>
<li> Using Windows PowerShell</li>
<li> Backing Up and Recovering Data</li>
</ul>
<p><strong>Monitoring Data in SharePoint 2010</strong></p>
<ul>
<li> Performance Tracking in SharePoint 2010</li>
<li> Using the SharePoint Best Practices Analyzer</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.fivenumber.com/whats-new-in-microsoft-sharepoint-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

