<?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>Life inside MOSS &#187; How To</title>
	<atom:link href="http://www.mossgeek.com/category/how-to/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mossgeek.com</link>
	<description>Share Point Server2007 blog</description>
	<lastBuildDate>Tue, 04 May 2010 17:58:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Running Code with Elevated Privileges</title>
		<link>http://www.mossgeek.com/2009/07/running-code-with-elevated-privileges/</link>
		<comments>http://www.mossgeek.com/2009/07/running-code-with-elevated-privileges/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 10:07:18 +0000</pubDate>
		<dc:creator>Geek</dc:creator>
				<category><![CDATA[Best practices]]></category>
		<category><![CDATA[Cool Links]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Moss]]></category>
		<category><![CDATA[Tips n Tricks]]></category>

		<guid isPermaLink="false">http://www.mossgeek.com/?p=150</guid>
		<description><![CDATA[During custom development in Sharepoint, sometimes your code must call restricted methods within the Windows SharePoint Services object model even though the request is initiated by a non privileged user. In such cases you must be able to elevate the privilege of your code as it executes on web server.  Meaning, instead of your code [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">During custom development in Sharepoint, sometimes your code must call restricted methods within the Windows SharePoint Services object model even though the request is initiated by a non privileged user. In such cases you must be able to elevate the privilege of your code as it executes on web server.<span style="mso-spacerun: yes;">  </span>Meaning, instead of your code running under the context of the current user, you&#8217;ll want to run it using an account with a higher level of access.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">The <strong style="mso-bidi-font-weight: normal;">RunWithElevatedPrivileges</strong> method is used to for this purpose. </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal;"><strong style="mso-bidi-font-weight: normal;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">VB.Net Example:</span></strong></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal;"><span style="font-size: 10pt; color: blue; font-family: &quot;Courier New&quot;; mso-no-proof: yes;">Sub</span><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; mso-no-proof: yes;"> GetSiteInfo()</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.5in; line-height: normal;"><span style="font-size: 10pt; color: blue; font-family: &quot;Courier New&quot;; mso-no-proof: yes;">Dim</span><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; mso-no-proof: yes;"> siteColl <span style="color: blue;">As</span> SPSite = SPContext.Current.Site</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.5in; line-height: normal;"><span style="font-size: 10pt; color: blue; font-family: &quot;Courier New&quot;; mso-no-proof: yes;">Dim</span><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; mso-no-proof: yes;"> site <span style="color: blue;">As</span> SPWeb = SPContext.Current.Web</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.5in; line-height: normal;"><span style="font-size: 10pt; color: blue; font-family: &quot;Courier New&quot;; mso-no-proof: yes;">Using</span><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; mso-no-proof: yes;"> ElevatedsiteColl <span style="color: blue;">As</span> SPSite = <span style="color: blue;">New</span> SPSite(siteColl.ID)</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 1in; line-height: normal;"><span style="font-size: 10pt; color: blue; font-family: &quot;Courier New&quot;; mso-no-proof: yes;">Using</span><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; mso-no-proof: yes;"> ElevatedSite <span style="color: blue;">As</span> SPWeb = ElevatedsiteColl.OpenWeb(site.ID)</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 1in; line-height: normal;"><span style="font-size: 10pt; color: blue; font-family: &quot;Courier New&quot;; mso-no-proof: yes;">End</span><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; mso-no-proof: yes;"> <span style="color: blue;">Using</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.5in; line-height: normal;"><span style="font-size: 10pt; color: blue; font-family: &quot;Courier New&quot;; mso-no-proof: yes;">End</span><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; mso-no-proof: yes;"> <span style="color: blue;">Using</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal;"><span style="font-size: 10pt; color: blue; font-family: &quot;Courier New&quot;; mso-no-proof: yes;">End</span><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; mso-no-proof: yes;"> <span style="color: blue;">Sub</span></span><strong style="mso-bidi-font-weight: normal;"></strong></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal;"><span>After you write a method such as <span style="font-family: Courier New;"><strong>GetSiteInfo</strong> </span></span><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">you can execute it with elevated privileges by invoking the <strong>RunWithElevatedPrivileges</strong> method and passing a delegate reference created with the Visual Basic <strong>AddressOf</strong> operator. </span><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-family: 'Courier New'; mso-no-proof: yes;">(note the creation of new SPSite and SPWeb objects)</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; mso-no-proof: yes;">SPSecurity.RunWithElevatedPrivileges(<span style="color: blue;">AddressOf</span> GetSiteInfo)</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal;"><strong style="mso-bidi-font-weight: normal;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">Note: </span></strong></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">You cannot use the objects available through the <strong style="mso-bidi-font-weight: normal;">Microsoft.SharePoint.SPContext.Current </strong>property<strong style="mso-bidi-font-weight: normal;">,</strong> because those objects were created in the security context of the current user. <span style="font-size: 10pt; font-family: 'Verdana','sans-serif';">You need to create an new instance of the <strong style="mso-bidi-font-weight: normal;">SPSite</strong> class and the <strong style="mso-bidi-font-weight: normal;">SPWeb</strong> class after you elevate the privileges of your code by calling <strong>RunWithElevatedPrivileges</strong> within the context of a Windows SharePoint Services request. </span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">You can find more details at:</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal;"><a href="http://msdn.microsoft.com/en-us/library/bb466220.aspx"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">http://msdn.microsoft.com/en-us/library/bb466220.aspx</span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mossgeek.com/2009/07/running-code-with-elevated-privileges/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to log errors to SharePoint Log file</title>
		<link>http://www.mossgeek.com/2009/07/how-to-log-errors-to-sharepoint-log-file-2/</link>
		<comments>http://www.mossgeek.com/2009/07/how-to-log-errors-to-sharepoint-log-file-2/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 10:01:52 +0000</pubDate>
		<dc:creator>Geek</dc:creator>
				<category><![CDATA[Best practices]]></category>
		<category><![CDATA[Cool Links]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Moss]]></category>
		<category><![CDATA[Tips n Tricks]]></category>

		<guid isPermaLink="false">http://www.mossgeek.com/?p=145</guid>
		<description><![CDATA[When you work with share point custom code development such as Web parts, Features, Event Handlers, and Workflows etc., you can use the Sharepoint built in logging mechanism to log the errors instead of creating custom logging mechanism. 
In SharePoint, log files are located at C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\LOG
To log errors/messages/exceptions to the [...]]]></description>
			<content:encoded><![CDATA[<p style="margin-bottom: 0pt;"><span style="font-size: 10pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-themecolor: text1;">When you work with share point custom code development such as Web parts, Features, Event Handlers, and Workflows etc., you can use the Sharepoint built in logging mechanism to log the errors instead of creating custom logging mechanism. </span></p>
<p style="margin-bottom: 0pt;"><span style="font-size: 10pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-themecolor: text1;">In SharePoint, log files are located at <strong style="mso-bidi-font-weight: normal;">C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\LOG</strong></span></p>
<p style="margin-bottom: 0pt;"><span style="font-size: 10pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-themecolor: text1;">To log errors/messages/exceptions to the default SharePoint log file use the following lines of code.</span></p>
<p style="margin-bottom: 0pt;"><span style="font-size: 10pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-themecolor: text1;">Microsoft.Office.Server.Diagnostics.PortalLog.LogString(”Exception Occurred: {0} || {1}”, Exc.Message, Exc.StackTrace);</span></p>
<p style="margin-bottom: 0pt;"><span style="font-size: 10pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-themecolor: text1;">Example Code snippet:</span></p>
<p style="margin-bottom: 0pt;"><span style="font-size: 10pt; color: blue; font-family: &quot;Courier New&quot;; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-no-proof: yes;">Try</span></p>
<p style="margin-bottom: 0pt;"><span style="font-size: 10pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-themecolor: text1;">{</span></p>
<p style="margin-bottom: 0pt;"><span style="font-size: 10pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-themecolor: text1;">}</span></p>
<p style="margin-bottom: 0pt;"><span style="font-size: 10pt; color: blue; font-family: &quot;Courier New&quot;; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-no-proof: yes;">catch</span><span style="font-size: 10pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-themecolor: text1;"> (Exception Exc)</span></p>
<p style="margin-bottom: 0pt;"><span style="font-size: 10pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-themecolor: text1;">{</span></p>
<p style="margin: 0in 0in 0pt ;"><span style="font-size: 10pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-themecolor: text1;">Microsoft.Office.Server.Diagnostics.PortalLog.LogString(”Exception Occurred: {0} || {1}”, Exc.Message, Exc.StackTrace);</span></p>
<p style="margin-bottom: 0pt;"><span style="font-size: 10pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-themecolor: text1;">}</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mossgeek.com/2009/07/how-to-log-errors-to-sharepoint-log-file-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MOSS 2007 limitations list for acceptable performance</title>
		<link>http://www.mossgeek.com/2009/07/moss-2007-limitations-ist-for-acceptable-performance/</link>
		<comments>http://www.mossgeek.com/2009/07/moss-2007-limitations-ist-for-acceptable-performance/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 09:11:22 +0000</pubDate>
		<dc:creator>Geek</dc:creator>
				<category><![CDATA[Best practices]]></category>
		<category><![CDATA[Cool Links]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Moss]]></category>
		<category><![CDATA[Tips n Tricks]]></category>

		<guid isPermaLink="false">http://www.mossgeek.com/?p=142</guid>
		<description><![CDATA[If you are planning for big Sharepoint (MOSS 2007) Implementations, consider these limitations and guidelines for the best Sharepoint (MOSS 2007) Implementation.
The following table lists the recommended guidelines for site objects.




Site object


Guidelines for acceptable performance


Scope of impact when performance degrades




Site collection


50,000 per content database


Farm




Site collection


150,000 per Web application


Farm




Web site


250,000 per site collection


Site collection




Subsite


2,000 per Web [...]]]></description>
			<content:encoded><![CDATA[<p style="margin: 0in 0in 0pt; line-height: normal;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-family: Tahoma;">If you are planning for big Sharepoint (MOSS 2007) Implementations, consider these limitations and guidelines for the best Sharepoint (MOSS 2007) Implementation.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-family: Tahoma;">The following table lists the recommended guidelines for site objects.</span></p>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes;">
<td style="padding-right: 5.4pt; padding-left: 5.4pt; padding-bottom: 0in; width: 159.6pt; padding-top: 0in; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; border: black 1pt solid;" width="213" valign="bottom">
<p class="MsoNormal" style="margin: 3.75pt 0in 0pt; line-height: normal;"><strong><span style="font-size: 8.5pt; color: #403152; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-themecolor: accent4; mso-themeshade: 128;">Site object</span></strong></p>
</td>
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: black 1pt solid; padding-left: 5.4pt; padding-bottom: 0in; border-left: #d4d0c8; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-left-themecolor: text1;" width="213" valign="bottom">
<p class="MsoNormal" style="margin: 3.75pt 0in; line-height: normal;"><strong><span style="font-size: 8.5pt; color: #403152; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-themecolor: accent4; mso-themeshade: 128;">Guidelines for acceptable performance</span></strong></p>
</td>
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: black 1pt solid; padding-left: 5.4pt; padding-bottom: 0in; border-left: #d4d0c8; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-left-themecolor: text1;" width="213" valign="bottom">
<p class="MsoNormal" style="margin: 3.75pt 0in; line-height: normal;"><strong><span style="font-size: 8.5pt; color: #403152; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-themecolor: accent4; mso-themeshade: 128;">Scope of impact when performance degrades</span></strong></p>
</td>
</tr>
<tr style="mso-yfti-irow: 1;">
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: black 1pt solid; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">Site collection</span></p>
</td>
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: #d4d0c8; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-left-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">50,000 per content database</span></p>
</td>
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: #d4d0c8; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-left-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">Farm</span></p>
</td>
</tr>
<tr style="mso-yfti-irow: 2;">
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: black 1pt solid; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">Site collection</span></p>
</td>
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: #d4d0c8; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-left-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">150,000 per Web application</span></p>
</td>
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: #d4d0c8; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-left-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">Farm</span></p>
</td>
</tr>
<tr style="mso-yfti-irow: 3;">
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: black 1pt solid; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">Web site</span></p>
</td>
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: #d4d0c8; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-left-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">250,000 per site collection</span></p>
</td>
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: #d4d0c8; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-left-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">Site collection</span></p>
</td>
</tr>
<tr style="mso-yfti-irow: 4;">
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: black 1pt solid; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">Subsite</span></p>
</td>
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: #d4d0c8; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-left-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">2,000 per Web site</span></p>
</td>
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: #d4d0c8; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-left-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">Site view</span></p>
</td>
</tr>
<tr style="mso-yfti-irow: 5;">
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: black 1pt solid; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">Document</span></p>
</td>
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: #d4d0c8; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-left-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">5 million per library</span></p>
</td>
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: #d4d0c8; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-left-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">Library</span></p>
</td>
</tr>
<tr style="mso-yfti-irow: 6;">
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: black 1pt solid; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">Item</span></p>
</td>
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: #d4d0c8; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-left-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">2,000 per view</span></p>
</td>
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: #d4d0c8; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-left-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">List view</span></p>
</td>
</tr>
<tr style="mso-yfti-irow: 7;">
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: black 1pt solid; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">Document file size</span></p>
</td>
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: #d4d0c8; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-left-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">50MB (2GB max*)</span></p>
</td>
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: #d4d0c8; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-left-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">Library, file save performance</span></p>
</td>
</tr>
<tr style="mso-yfti-irow: 8;">
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: black 1pt solid; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">List</span></p>
</td>
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: #d4d0c8; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-left-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">2,000 per Web site</span></p>
</td>
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: #d4d0c8; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-left-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">List view</span></p>
</td>
</tr>
<tr style="mso-yfti-irow: 9;">
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: black 1pt solid; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">Field type</span></p>
</td>
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: #d4d0c8; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-left-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">256 per list</span></p>
</td>
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: #d4d0c8; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-left-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">List view</span></p>
</td>
</tr>
<tr style="mso-yfti-irow: 10;">
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: black 1pt solid; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">Column</span></p>
</td>
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: #d4d0c8; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-left-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">2,000 per document library</span></p>
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">4,096 per list</span></p>
</td>
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: #d4d0c8; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-left-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">Library and list view</span></p>
</td>
</tr>
<tr style="mso-yfti-irow: 11;">
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: black 1pt solid; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">Web Part</span></p>
</td>
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: #d4d0c8; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-left-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">50 per page</span></p>
</td>
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: #d4d0c8; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-left-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">Page</span></p>
</td>
</tr>
<tr style="mso-yfti-irow: 12; mso-yfti-lastrow: yes;">
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: black 1pt solid; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">Managed path</span></p>
</td>
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: #d4d0c8; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-left-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">20 per Web application</span></p>
</td>
<td style="border-right: black 1pt solid; padding-right: 5.4pt; border-top: #d4d0c8; padding-left: 5.4pt; padding-bottom: 0in; border-left: #d4d0c8; width: 159.6pt; padding-top: 0in; border-bottom: black 1pt solid; background-color: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-left-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1;" width="213" valign="top">
<p class="MsoNormal" style="margin: 0in 0.75pt 0pt; line-height: normal;"><span style="font-size: 8.5pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">Web application</span></p>
</td>
</tr>
</tbody>
</table>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal;"> </p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal;">You can find more details at:<br />
<a href="http://technet.microsoft.com/en-us/library/cc262787.aspx">Plan for software boundaries (Office SharePoint Server)</a></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal;"><a href="http://technet.microsoft.com/en-us/library/cc262787.aspx"></a> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.mossgeek.com/2009/07/moss-2007-limitations-ist-for-acceptable-performance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint Screencasts and Visual Howto’s</title>
		<link>http://www.mossgeek.com/2009/06/sharepoint-screencasts-and-visual-howto%e2%80%99s/</link>
		<comments>http://www.mossgeek.com/2009/06/sharepoint-screencasts-and-visual-howto%e2%80%99s/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 13:04:20 +0000</pubDate>
		<dc:creator>Geek</dc:creator>
				<category><![CDATA[Cool Links]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Moss]]></category>

		<guid isPermaLink="false">http://www.mossgeek.com/?p=104</guid>
		<description><![CDATA[A huge list of Visual Howto’s related to Microsoft Office SharePoint Server 2007 is available @ http://msdn.microsoft.com/en-us/office/aa940989.aspx.Office Visual HowTo’s provide instruction, code examples, and short how-to videos
If you are new to Sharepoint 2007, take a look at the following screencasts series. 


Building ASP.NET Web Parts for Windows SharePoint Services 3.0


Creating a Custom Page Layout with [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="MARGIN: 0in 0in 10pt"><span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Verdana','sans-serif'">A huge list of Visual Howto’s related to Microsoft Office SharePoint Server 2007 is available </span><span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Verdana','sans-serif'">@ <a href="http://msdn.microsoft.com/en-us/office/aa940989.aspx">http://msdn.microsoft.com/en-us/office/aa940989.aspx</a>.</span><span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Verdana','sans-serif'">Office Visual HowTo’s provide instruction, code examples, and short how-to videos</span></p>
<p class="MsoNormal" style="MARGIN: 0in 0in 10pt"><span style="FONT-SIZE: 10pt; COLOR: black; LINE-HEIGHT: 115%; FONT-FAMILY: 'Verdana','sans-serif'">If you are new to Sharepoint 2007, take a look at the following screencasts series. </span></p>
<ul>
<li>
<div class="MsoNormal" style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Verdana','sans-serif'"><a href="http://go.microsoft.com/?linkid=5519355"><span style="color: #0033cc;">Building ASP.NET Web Parts for Windows SharePoint Services 3.0</span></a></span></div>
</li>
<li>
<div class="MsoNormal" style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Verdana','sans-serif'"><a href="http://go.microsoft.com/?linkid=5519356"><span style="color: #0033cc;">Creating a Custom Page Layout with SharePoint Server 2007</span></a></span></div>
</li>
<li>
<div class="MsoNormal" style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Verdana','sans-serif'"><a href="http://go.microsoft.com/?linkid=5519357"><span style="color: #0033cc;">Creating and Testing Features with Windows SharePoint Services 3.0</span></a></span></div>
</li>
<li>
<div class="MsoNormal" style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Verdana','sans-serif'"><a href="http://go.microsoft.com/?linkid=5519358"><span style="color: #0033cc;">Creating and Using Content Types in Windows SharePoint Services 3.0 </span></a></span></div>
</li>
<li>
<div class="MsoNormal" style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Verdana','sans-serif'"><a href="http://go.microsoft.com/?linkid=5519359"><span style="color: #0033cc;">Creating and Using Event Handlers in Windows SharePoint Services 3.0</span></a></span></div>
</li>
<li>
<div class="MsoNormal" style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Verdana','sans-serif'"><a href="http://go.microsoft.com/?linkid=5519360"><span style="color: #0033cc;">Creating and Using Site Columns in Windows SharePoint Services 3.0 </span></a></span></div>
</li>
<li>
<div class="MsoNormal" style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Verdana','sans-serif'"><a href="http://go.microsoft.com/?linkid=5519361"><span style="color: #0033cc;">Creating Custom Document Information Panels</span></a></span></div>
</li>
<li>
<div class="MsoNormal" style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Verdana','sans-serif'"><a href="http://go.microsoft.com/?linkid=5519362"><span style="color: #0033cc;">Creating Custom Task Panes in Visual Studio Tools for Office &#8220;v3&#8243; June CTP</span></a></span></div>
</li>
<li>
<div class="MsoNormal" style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Verdana','sans-serif'"><a href="http://go.microsoft.com/?linkid=5519363"><span style="color: #0033cc;">Creating Custom Workflows with the SharePoint Designer 2007</span></a></span></div>
</li>
<li>
<div class="MsoNormal" style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Verdana','sans-serif'"><a href="http://go.microsoft.com/?linkid=5519364"><span style="color: #0033cc;">Creating Windows SharePoint Services Sites with Support for Wikis and Blogs</span></a></span></div>
</li>
<li>
<div class="MsoNormal" style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Verdana','sans-serif'"><a href="http://go.microsoft.com/?linkid=5519365"><span style="color: #0033cc;">Customizing a Windows SharePoint Services 3.0 site with the SharePoint Designer 2007</span></a></span></div>
</li>
<li>
<div class="MsoNormal" style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Verdana','sans-serif'"><a href="http://go.microsoft.com/?linkid=5519370"><span style="color: #0033cc;">Getting Up and Running with Excel Services</span></a></span></div>
</li>
<li>
<div class="MsoNormal" style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><strong style="mso-bidi-font-weight: normal"><span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Verdana','sans-serif'"><a href="http://go.microsoft.com/?linkid=5519353"><strong><span style="FONT-WEIGHT: normal; FONT-FAMILY: 'Verdana','sans-serif'; mso-bidi-font-family: 'Times New Roman'; mso-bidi-font-weight: bold; mso-bidi-theme-font: minor-bidi"><span style="color: #0033cc;">Creating a Custom Page Layout with SharePoint Server 2007</span></span></strong></a></span></strong></div>
</li>
<li>
<div class="MsoNormal" style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><strong style="mso-bidi-font-weight: normal"><span style="FONT-SIZE: 10pt; COLOR: black; FONT-FAMILY: 'Verdana','sans-serif'"><a href="http://go.microsoft.com/?linkid=5519354"><strong><span style="FONT-WEIGHT: normal; FONT-FAMILY: 'Verdana','sans-serif'; mso-bidi-font-family: 'Times New Roman'; mso-bidi-font-weight: bold; mso-bidi-theme-font: minor-bidi"><span style="color: #0033cc;">Creating Windows SharePoint Services Sites with Support for Wikis and Blogs</span></span></strong></a></span></strong></div>
</li>
<li>
<div class="MsoNormal" style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Verdana','sans-serif'; mso-bidi-font-family: Arial"><a href="http://office.microsoft.com/en-us/sharepointserver/HA102047921033.aspx"><span style="color: #0033cc;">Demo: Configure a SharePoint Server 2007 site to receive e-mail </span></a></span></div>
</li>
<li>
<div class="MsoNormal" style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Verdana','sans-serif'; mso-bidi-font-family: Arial"><a href="http://office.microsoft.com/en-us/sharepointserver/HA102050471033.aspx">Demo: Deploy an administrator-approved form template </a></span></div>
</li>
<li>
<div class="MsoNormal" style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Verdana','sans-serif'; mso-bidi-font-family: Arial"><a href="http://office.microsoft.com/en-us/sharepointserver/HA102045611033.aspx"><span style="color: #0033cc;">Demo: Add a library to a Records Center site </span></a></span></div>
</li>
<li>
<div class="MsoNormal" style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"><span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Verdana','sans-serif'; mso-bidi-font-family: Arial"><a href="http://office.microsoft.com/en-us/sharepointserver/HA102078901033.aspx"><span style="color: #0033cc;">Demo: Enable Excel Services and data connections for a SharePoint team site</span></a></span></div>
</li>
</ul>
<p class="MsoNormal" style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.mossgeek.com/2009/06/sharepoint-screencasts-and-visual-howto%e2%80%99s/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://go.microsoft.com/?linkid=5519355" length="8022185" type="video/x-ms-wmv" />
<enclosure url="http://go.microsoft.com/?linkid=5519356" length="12811026" type="video/x-ms-wmv" />
<enclosure url="http://go.microsoft.com/?linkid=5519357" length="17234956" type="video/x-ms-wmv" />
<enclosure url="http://go.microsoft.com/?linkid=5519358" length="7678267" type="video/x-ms-wmv" />
<enclosure url="http://go.microsoft.com/?linkid=5519359" length="14520484" type="video/x-ms-wmv" />
<enclosure url="http://go.microsoft.com/?linkid=5519360" length="10199600" type="video/x-ms-wmv" />
<enclosure url="http://go.microsoft.com/?linkid=5519361" length="11731214" type="video/x-ms-wmv" />
<enclosure url="http://go.microsoft.com/?linkid=5519362" length="8645058" type="video/x-ms-wmv" />
<enclosure url="http://go.microsoft.com/?linkid=5519363" length="6227106" type="video/x-ms-wmv" />
<enclosure url="http://go.microsoft.com/?linkid=5519364" length="13091896" type="video/x-ms-wmv" />
<enclosure url="http://go.microsoft.com/?linkid=5519365" length="12717380" type="video/x-ms-wmv" />
<enclosure url="http://go.microsoft.com/?linkid=5519370" length="10558952" type="video/x-ms-wmv" />
<enclosure url="http://go.microsoft.com/?linkid=5519353" length="12811026" type="video/x-ms-wmv" />
<enclosure url="http://go.microsoft.com/?linkid=5519354" length="13091896" type="video/x-ms-wmv" />
		</item>
		<item>
		<title>Accessing Lists through Sharepoint  Object model</title>
		<link>http://www.mossgeek.com/2009/06/accessing-lists-through-sharepoint-object-model/</link>
		<comments>http://www.mossgeek.com/2009/06/accessing-lists-through-sharepoint-object-model/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 12:39:37 +0000</pubDate>
		<dc:creator>Geek</dc:creator>
				<category><![CDATA[Best practices]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Object Model]]></category>
		<category><![CDATA[Tips n Tricks]]></category>

		<guid isPermaLink="false">http://www.mossgeek.com/?p=101</guid>
		<description><![CDATA[Is accessing the list taking more time&#8230;
Consider the following while accessing the list  through Object model

SPWeb.GetList(string url)
In this case, first it gets the list GUID from the url(database hit), then it loads the Meta data for that specific list.
SPWeb.Lists[“name”]
This method loads the meta-data information of the all lists for the SPWeb object under consideration. and [...]]]></description>
			<content:encoded><![CDATA[<p>Is accessing the list taking more time&#8230;</p>
<p>Consider the following while accessing the list  through Object model</p>
<ol>
<li><strong>SPWeb.GetList(string url)</strong><br />
In this case, first it gets the list GUID from the url(database hit), then it loads the Meta data for that specific list.</li>
<li><strong>SPWeb.Lists[“name”]</strong><br />
This method loads the meta-data information of the all lists for the SPWeb object under consideration. and then it does SPList.Title comparison with metadata of all the lists returned and returns the first matching list from the SPWeb.Lists collection.</li>
</ol>
<p>The first approach provides better performance than the second one.</p>
<p>If we pass GUID of the list  instead of a list name in the second approach it works similar to the first approach (SPWeb.GetList (url)), however passing a List Index would work similar to the second approach.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mossgeek.com/2009/06/accessing-lists-through-sharepoint-object-model/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Performance Optimization for WCM Sites &amp; Optimize Sharepoint Site for Search Engines</title>
		<link>http://www.mossgeek.com/2009/02/performance-optimization-for-wcm-sites-optimize-sharepoint-site-for-search-engines/</link>
		<comments>http://www.mossgeek.com/2009/02/performance-optimization-for-wcm-sites-optimize-sharepoint-site-for-search-engines/#comments</comments>
		<pubDate>Sat, 28 Feb 2009 21:31:37 +0000</pubDate>
		<dc:creator>Geek</dc:creator>
				<category><![CDATA[Best practices]]></category>
		<category><![CDATA[Cool Links]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Moss]]></category>

		<guid isPermaLink="false">http://www.mossgeek.com/?p=80</guid>
		<description><![CDATA[In internet facing scenario performance optimization is a key thing for the successful implementation of any website. Microsoft has provided good articles related to Performance Optimization for the WCM site in SharePoint &#38; also on how to optimize SharePoint for search engines.
Here is the link:
 
How to Optimize a SharePoint Server 2007 Web Content Management Site [...]]]></description>
			<content:encoded><![CDATA[<p>In internet facing scenario performance optimization is a key thing for the successful implementation of any website. Microsoft has provided good articles related to Performance Optimization for the WCM site in SharePoint &amp; also on how to optimize SharePoint for search engines.<br />
Here is the link:<br />
 <br />
How to Optimize a SharePoint Server 2007 Web Content Management Site for Performance</p>
<p><a href="http://msdn.microsoft.com/en-us/library/bb727371.aspx">http://msdn.microsoft.com/en-us/library/bb727371.aspx</a><br />
How to Optimize SharePoint Server 2007 Web Content Management Sites for Search Engines</p>
<p><a href="http://msdn.microsoft.com/en-us/library/cc721591.aspx">http://msdn.microsoft.com/en-us/library/cc721591.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mossgeek.com/2009/02/performance-optimization-for-wcm-sites-optimize-sharepoint-site-for-search-engines/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Site Content And Structure : Find all the pages created using Page layout</title>
		<link>http://www.mossgeek.com/2009/02/site-content-and-structure-find-all-the-pages-created-using-page-layout/</link>
		<comments>http://www.mossgeek.com/2009/02/site-content-and-structure-find-all-the-pages-created-using-page-layout/#comments</comments>
		<pubDate>Sat, 28 Feb 2009 21:13:38 +0000</pubDate>
		<dc:creator>Geek</dc:creator>
				<category><![CDATA[Best practices]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Moss]]></category>
		<category><![CDATA[Tips n Tricks]]></category>

		<guid isPermaLink="false">http://www.mossgeek.com/?p=67</guid>
		<description><![CDATA[In CMS Dependent Report feature is used to identify all the postings which are created using the Template. In Sharepoint Similar feature is available where you can find all the pages which are created using the page layout. This is also useful when you modify the page layout and you want to test all the [...]]]></description>
			<content:encoded><![CDATA[<p>In CMS Dependent Report feature is used to identify all the postings which are created using the Template. In Sharepoint Similar feature is available where you can find all the pages which are created using the page layout. This is also useful when you modify the page layout and you want to test all the pages which are created using this page layout.</p>
<p>Here are the steps:</p>
<p>1)Navigate to Site Actions à Manage Content And Structure</p>
<p>2)Go to Master Page Gallery in the folder list</p>
<p>3)Select “Show Related Resources” in the Tool Pane</p>
<p>4)Select the Page Layout for which you want to list all the resources</p>
<p>5)A list of all the related resources for the selected page layout will be listed in the bottom window.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mossgeek.com/2009/02/site-content-and-structure-find-all-the-pages-created-using-page-layout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Understand Sharepoint using Dot Net Reflector</title>
		<link>http://www.mossgeek.com/2009/02/understand-sharepoint-using-dot-net-reflector/</link>
		<comments>http://www.mossgeek.com/2009/02/understand-sharepoint-using-dot-net-reflector/#comments</comments>
		<pubDate>Sat, 28 Feb 2009 20:57:37 +0000</pubDate>
		<dc:creator>Geek</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Moss]]></category>
		<category><![CDATA[Object Model]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.mossgeek.com/?p=44</guid>
		<description><![CDATA[
Using .NET Reflector, you can browse the classes and methods of an assembly, you can examine the Microsoft intermediate language (MSIL) generated by these classes and methods, and you can decompile the classes and methods and see the equivalent in C# or Visual Basic .NET.

Dot Net Reflector Can be used for the following in SharePoint [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin: 0in 0in 0pt;">
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="mso-ansi-language: EN;" lang="EN"><span style="font-size: small;"><span style="font-family: Calibri;">Using .NET Reflector, you can browse the classes and methods of an assembly, you can examine the Microsoft intermediate language (MSIL) generated by these classes and methods, and you can decompile the classes and methods and see the equivalent in C# or Visual Basic .NET.</span></span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span class="MsoHyperlink"><span style="text-decoration: none;"><span style="text-decoration: underline;"></span></span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Calibri;">Dot Net Reflector Can be used for the following in</span><span style="font-size: small; font-family: Calibri;"> SharePoint Scenario, </span><span style="font-size: small; font-family: Calibri;">:</span></p>
<ul>
<li> <span style="mso-ansi-language: EN;" lang="EN"><span style="font-size: small;"><span style="font-family: Calibri;">Understand on how SharePoint is doing something, to find what elements can be customized.</span></span></span><span style="font-family: Symbol; mso-ansi-language: EN; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol;" lang="EN"><span style="mso-list: Ignore;"></span></span></li>
<li><span style="font-family: Symbol; mso-ansi-language: EN; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol;" lang="EN"><span style="mso-list: Ignore;"><span style="font: 7pt &quot;Times New Roman&quot;;"> </span></span></span><span style="mso-ansi-language: EN;" lang="EN"><span style="font-size: small;"><span style="font-family: Calibri;">Understand what members to override in classes you create that inherit from SharePoint classes</span></span></span></li>
<li><span style="mso-ansi-language: EN;" lang="EN"><span style="font-size: small;"></span></span><span style="font-family: Symbol; mso-ansi-language: EN; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol;" lang="EN"><span style="mso-list: Ignore;"></span></span><span style="mso-ansi-language: EN;" lang="EN"><span style="font-size: small;"><span style="font-family: Calibri;">.NET Reflector is also an excellent way to know the best practices. Because you get to see how the team at Microsoft actually implemented functionalities. And also you have lots of examples at your fingers tips.</span></span></span></li>
</ul>
<p class="MsoListParagraph" style="margin: 0in 0in 0pt 0.25in;"><span style="mso-ansi-language: EN;" lang="EN"><span style="font-size: small; font-family: Calibri;"> </span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><strong><span style="mso-ansi-language: EN;" lang="EN"><span style="font-size: small;"><span style="font-family: Calibri;">Example Usage of Dot Net Reflector to Under Stand SharePoint Source Code:</span></span></span></strong></p>
<p class="MsoListParagraph" style="margin: 0in 0in 0pt 0.25in; text-indent: -0.25in; mso-list: l0 level1 lfo2;"><span style="font-family: Symbol; mso-ansi-language: EN; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol; mso-bidi-font-weight: bold;" lang="EN"><span style="mso-list: Ignore;"><span style="font-size: small;">·</span><span style="font: 7pt &quot;Times New Roman&quot;;"> </span></span></span><span style="mso-ansi-language: EN;" lang="EN"><span style="font-size: small;"><span style="font-family: Calibri;">If you want to know on what is happening on load of OOTB Search Results Page then open<strong> Microsoft.SharePoint.ApplicationPages.dll</strong> and navigate to SearchResultsPage class and click on OnLoad method. </span></span></span></p>
<p class="MsoListParagraph" style="margin: 0in 0in 0pt 0.25in; text-indent: -0.25in; mso-list: l0 level1 lfo2;">
<p><span style="mso-ansi-language: EN;" lang="EN"></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><strong><span style="mso-ansi-language: EN;" lang="EN">SharePoint DLLS:</span></strong></p>
<ul>
<li><span style="font-family: Symbol; mso-ansi-language: EN; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol;" lang="EN"><span style="mso-list: Ignore;"></span></span><span style="mso-ansi-language: EN;" lang="EN">You can find all the SharePoint dlls under  <a href="file:///C:/Program%20Files/Common%20Files/Microsoft%20Shared/web%20server%20extensions/12/ISAPI">C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\ISAPI</a></span></li>
</ul>
<ul>
<li><span style="font-family: Symbol; mso-ansi-language: EN; mso-fareast-font-family: Symbol; mso-bidi-font-family: Symbol;" lang="EN"><span style="mso-list: Ignore;"></span></span><span style="mso-ansi-language: EN;" lang="EN">Some SharePoint assemblies(Microsoft.SharePoint.ApplicationPages.dll)  are stored in the <strong>_app_bin</strong> directory of the web application instead of the ISAPI directory in the 12-hive.</span></li>
</ul>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="mso-ansi-language: EN;" lang="EN"> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><strong><span style="mso-ansi-language: EN;" lang="EN">Obfuscation:</span></strong></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="mso-ansi-language: EN;" lang="EN">Sometimes, not too often, when Reflector is disassembling source code for you, it will show &#8220;This item is obfuscated and can not be translated&#8221; instead of code. This is done for some of the more &#8220;sensitive&#8221; areas of the code</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;">
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><strong>Downloads:</strong></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;">.Net Reflector:<strong> </strong><span style="text-decoration: underline;"><a href="http://www.red-gate.com/products/reflector/">http://www.red-gate.com/products/reflector/</a></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;">Add-ins:<strong> <span style="text-decoration: underline;"> </span></strong><a href="http://www.codeplex.com/reflectoraddins">http://www.codeplex.com/reflectoraddins</a></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;">
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><strong>Note:</strong><span style="mso-ansi-language: EN;" lang="EN"> Review the end user license agreement (EULA) for the relevant Microsoft products before using this tool.</span><strong></strong></p>
<p><span style="mso-ansi-language: EN;" lang="EN"></span></p>
<p class="MsoListParagraph" style="margin: 0in 0in 0pt 0.25in; text-indent: -0.25in; mso-list: l0 level1 lfo2;"><span style="font-size: small;"><span style="font-family: Calibri;"><strong></strong></span></span></p>
<p class="MsoListParagraph" style="margin: 0in 0in 0pt 0.25in; text-indent: -0.25in; mso-list: l0 level1 lfo2;"><span style="font-size: small;"><br />
</span></p>
<p class="MsoListParagraph" style="margin: 0in 0in 0pt 0.25in; text-indent: -0.25in; mso-list: l0 level1 lfo2;">
<p class="MsoListParagraph" style="margin: 0in 0in 0pt 0.25in; text-indent: -0.25in; mso-list: l0 level1 lfo2;">
]]></content:encoded>
			<wfw:commentRss>http://www.mossgeek.com/2009/02/understand-sharepoint-using-dot-net-reflector/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Manage Site Content And Structure in Sharepoint Server 2007</title>
		<link>http://www.mossgeek.com/2009/02/how-to-manage-site-content-and-structure/</link>
		<comments>http://www.mossgeek.com/2009/02/how-to-manage-site-content-and-structure/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 17:42:48 +0000</pubDate>
		<dc:creator>Geek</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Tips n Tricks]]></category>

		<guid isPermaLink="false">http://www.mossgeek.com/?p=52</guid>
		<description><![CDATA[In a Sharepoint the Site Content and Structure page is cool tool for site administrators to manage site content and structure. You can do lot of stuff here in a easy and efficient way
You can do the following
1)    Create Sub site/pages/files
2)    Delete Sub sites/ pages/ files
3)    Move files between libraries
4)    Delete Sites/ files
5)    Bulk Check in/ Checkout/ [...]]]></description>
			<content:encoded><![CDATA[<p>In a Sharepoint the Site Content and Structure page is cool tool for site administrators to manage site content and structure. You can do lot of stuff here in a easy and efficient way</p>
<p>You can do the following<br />
1)    Create Sub site/pages/files<br />
2)    Delete Sub sites/ pages/ files<br />
3)    Move files between libraries<br />
4)    Delete Sites/ files<br />
5)    Bulk Check in/ Checkout/ Approve pages or documents<br />
6)    Publish Pages &#8211; If you want to publish the file, you have to check in the file then approve and then publish it You can do this in one step by selecting the Action &gt;&gt; Publish through Site Content and Structure Page.</p>
<p><strong>Navigation Path:</strong> Site Actions &gt;&gt; Manage Content And Structure</p>
<p style="text-align: center;"><img class="size-full wp-image-53 aligncenter" title="Sharepoint Server 2007" src="http://www.mossgeek.com/wp-content/uploads/2009/02/sharepoint2007.jpg" alt="Sharepoint Server 2007" width="283" height="278" /></p>
<p style="text-align: center;"><span id="more-52"></span></p>
<p><strong>Create Site:</strong></p>
<p><strong><br />
</strong></p>
<p style="text-align: center;"><img class="size-full wp-image-54 aligncenter" title="Sharepoint Server 2007" src="http://www.mossgeek.com/wp-content/uploads/2009/02/sharepoint20072.jpg" alt="Sharepoint Server 2007" width="311" height="374" /></p>
<p><strong>Delete Site and its Sub sites (Note: The site will be deleted directly without moving to recycle bin)</strong></p>
<p style="text-align: center;"><img class="size-full wp-image-56 aligncenter" title="Sharepoint Server 2007" src="http://www.mossgeek.com/wp-content/uploads/2009/02/sharepoint3.jpg" alt="Sharepoint Server 2007" width="306" height="407" /></p>
<p><strong>Check in, Check Out, Publish</strong></p>
<p style="text-align: center;"><img class="size-full wp-image-55 aligncenter" title="Sharepoint server 2007" src="http://www.mossgeek.com/wp-content/uploads/2009/02/sharepoint4.jpg" alt="Sharepoint server 2007" width="542" height="372" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mossgeek.com/2009/02/how-to-manage-site-content-and-structure/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
