<?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>UKoom &#187; SharePoint</title>
	<atom:link href="http://www.ukoom.com/tag/sharepoint/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ukoom.com</link>
	<description>Documentum, SharePoint, Alfresco, ECM...</description>
	<lastBuildDate>Tue, 25 Oct 2011 15:11:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>The detail of SharePoint feature</title>
		<link>http://www.ukoom.com/the.htm</link>
		<comments>http://www.ukoom.com/the.htm#comments</comments>
		<pubDate>Mon, 11 Apr 2011 18:53:18 +0000</pubDate>
		<dc:creator>ukoom</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2007]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=1267</guid>
		<description><![CDATA[SharePoint Features can be targeted at the Farm, Web Application, Site Collection or Web Site scope. The target will effect things like where you can manage the feature activation from in the UI and at which point (and how many times) the Feature receiver events are called. Reference: http://blog.pentalogic.net/2010/06/sharepoint-feature-receivers-events-details/]]></description>
			<content:encoded><![CDATA[<p>SharePoint Features can be targeted at the <a href="http://msdn.microsoft.com/en-us/library/ms476615.aspx" target="_blank">Farm, Web Application, Site Collection or Web Site scope</a>.  The target will effect things like where you can manage the feature  activation from in the UI and at which point (and how many times) the  Feature receiver events are called.</p>
<p>Reference:</p>
<p>http://blog.pentalogic.net/2010/06/sharepoint-feature-receivers-events-details/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/the.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to execute the PowerShell script</title>
		<link>http://www.ukoom.com/how-to-execute-the-powershell-script.htm</link>
		<comments>http://www.ukoom.com/how-to-execute-the-powershell-script.htm#comments</comments>
		<pubDate>Mon, 11 Apr 2011 18:45:00 +0000</pubDate>
		<dc:creator>ukoom</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=1263</guid>
		<description><![CDATA[Here are basic instructions to help you execute a PowerShell command.  You have a choice of three strategies; firstly, the time-honoured method of copying other people&#8217;s examples, and then pasting their code into your PowerShell session.  Secondly, creating cmdlets (my favorite), and thirdly, simply typing the instructions at the PowerShell command line. The recommended way [...]]]></description>
			<content:encoded><![CDATA[<p>Here are basic instructions to help you execute a PowerShell command.         You have a choice of three strategies; firstly, the time-honoured  method of copying other people&#8217;s examples, and then pasting their code  into your PowerShell session.  Secondly, creating cmdlets (my favorite),  and thirdly, simply typing the instructions at the PowerShell command  line.</p>
<p>The recommended way is running the script as a file. Just need to rename the file with the &#8216;.ps1&#8242; extenstion</p>
<p>Reference:</p>
<p>http://www.computerperformance.co.uk/powershell/powershell_command_execute.htm#Method_2_Cmdlet_%28Best%29</p>
<p>http://ranaictiu-technicalblog.blogspot.com/2010/05/sharepoint-2010-deployment-powershell.html</p>
<p>http://technet.microsoft.com/en-us/library/ee806878.aspx</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/how-to-execute-the-powershell-script.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>what is SharePoint\System account</title>
		<link>http://www.ukoom.com/what-is-sharepointsystem-account.htm</link>
		<comments>http://www.ukoom.com/what-is-sharepointsystem-account.htm#comments</comments>
		<pubDate>Mon, 11 Apr 2011 18:42:20 +0000</pubDate>
		<dc:creator>ukoom</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=1261</guid>
		<description><![CDATA[SHAREPOINT\System account is the same account used by application pool of your SharePoint web application in IIS at the time of creation/extension of respective web application. This is the account which is used when you run your code in under elevated privileges by SPSecurity.RunWithElevatedPrivileges. When you create/extend a web application in SharePoint and specify an Application Pool then the [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>SHAREPOINT\System account is the same account used by application pool of your SharePoint web application in IIS <span style="text-decoration: underline;">at the time of creation/extension</span> of respective web application.</li>
<li>This is the account which is used when you run your code in under elevated privileges by <strong>SPSecurity.RunWithElevatedPrivileges.</strong></li>
<li><strong> </strong>When you create/extend a web application in  SharePoint and specify an Application Pool then the identity (Network  Account) used by that Application pool becomes the  SHAREPOINT\System account.</li>
<li>It is highly recommended that end user should not be allowed to use this account to avoid unexpected errors.</li>
<li>If you change the identity of App Pool account after creating/extending the SharePoint web application, the new account <span style="text-decoration: underline;">will not</span> become the SHAREPOINT\System.</li>
</ol>
<p>Reference:</p>
<p>http://www.beyondweblogs.com/post/What-is-SharePoint-System-Account.aspx</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/what-is-sharepointsystem-account.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Action Locations and IDs</title>
		<link>http://www.ukoom.com/custom-action-locations-and-ids.htm</link>
		<comments>http://www.ukoom.com/custom-action-locations-and-ids.htm#comments</comments>
		<pubDate>Mon, 11 Apr 2011 18:36:07 +0000</pubDate>
		<dc:creator>ukoom</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=1256</guid>
		<description><![CDATA[Original article: http://msdn.microsoft.com/en-us/library/bb802730.aspx The following table shows the locations, custom action group IDs, and custom action IDs that are used in the CustomAction element and the CustomActionGroup element of custom actions that are installed by default in Microsoft SharePoint Foundation. In the table, each location value corresponds to the Location attribute of the CustomAction element. [...]]]></description>
			<content:encoded><![CDATA[<p>Original article:</p>
<p>http://msdn.microsoft.com/en-us/library/bb802730.aspx</p>
<div>
<p>The following table shows the locations, custom action group IDs, and custom action IDs that are used in the <a href="http://msdn.microsoft.com/en-us/library/ms460194.aspx">CustomAction</a> element and the <a href="http://msdn.microsoft.com/en-us/library/ms438085.aspx">CustomActionGroup</a> element of custom actions that are installed by default in Microsoft SharePoint Foundation.</p>
<p>In the table, each location value corresponds to the <span><span>Location</span></span> attribute of the <a href="http://msdn.microsoft.com/en-us/library/ms460194.aspx">CustomAction</a> element. Each group ID corresponds to the <span><span>GroupId</span></span> attribute of the <a href="http://msdn.microsoft.com/en-us/library/ms460194.aspx">CustomAction</a> element or to the <span><span>Id</span></span> attribute of the <a href="http://msdn.microsoft.com/en-us/library/ms438085.aspx">CustomActionGroup</a> element. Each custom action ID corresponds to the <span><span>Id</span></span> attribute of the <a href="http://msdn.microsoft.com/en-us/library/ms460194.aspx">CustomAction</a> element.</p>
<p>You can create a Feature that implements the <a href="http://msdn.microsoft.com/en-us/library/ms414790.aspx">HideCustomAction</a> element to hide any default custom action that is identified in the table.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/custom-action-locations-and-ids.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Content Types in SharePoint 2010</title>
		<link>http://www.ukoom.com/creating-content-types-in-sharepoint-2010.htm</link>
		<comments>http://www.ukoom.com/creating-content-types-in-sharepoint-2010.htm#comments</comments>
		<pubDate>Mon, 11 Apr 2011 18:34:39 +0000</pubDate>
		<dc:creator>ukoom</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=1253</guid>
		<description><![CDATA[There are lots of articles about creating content type in SharePoint 2010. Below links FYI. Reference: http://msdn.microsoft.com/en-us/library/gg295290.aspx http://msdn.microsoft.com/en-us/library/ff630942.aspx#Y684 http://msdn.microsoft.com/en-us/vcsharp/Video/ff623016]]></description>
			<content:encoded><![CDATA[<p>There are lots of articles about creating content type in SharePoint 2010. Below links FYI.</p>
<p>Reference:</p>
<p>http://msdn.microsoft.com/en-us/library/gg295290.aspx</p>
<p>http://msdn.microsoft.com/en-us/library/ff630942.aspx#Y684</p>
<p>http://msdn.microsoft.com/en-us/vcsharp/Video/ff623016</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/creating-content-types-in-sharepoint-2010.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CustomErrors setting in SharePoint 2010</title>
		<link>http://www.ukoom.com/customerrors-setting-in-sharepoint-2010.htm</link>
		<comments>http://www.ukoom.com/customerrors-setting-in-sharepoint-2010.htm#comments</comments>
		<pubDate>Mon, 11 Apr 2011 18:31:21 +0000</pubDate>
		<dc:creator>ukoom</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=1251</guid>
		<description><![CDATA[It’s a little bit different than SharePoint 2007, you need to change two web.config files instead of one: Underneath  [systemdrive]:/inetpub/wwwroot/wss/virtualdirectories/ In the layouts directory underneath the SharePoint root directory or 14 hive – [systemdrive]:/Program Files/Common Files/Microsoft Shared/Web Server Extensions/14/TEMPLATE/LAYOUTS/ The settings that you need to change in the web.config file are still the same: Change [...]]]></description>
			<content:encoded><![CDATA[<p>It’s a little bit different than SharePoint 2007, you need to change two web.config files instead of one:</p>
<ul>
<li>Underneath  [systemdrive]:/inetpub/wwwroot/wss/virtualdirectories/</li>
<li>In  the layouts directory underneath the SharePoint root directory   or 14  hive – [systemdrive]:/Program Files/Common Files/Microsoft   Shared/Web  Server Extensions/14/TEMPLATE/LAYOUTS/</li>
</ul>
<p>The settings that you need to change in the web.config file are still the same:</p>
<ul>
<li>Change Debug=”true”</li>
<li>CallStack=”true”</li>
<li>CustomErrors=”Off”</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/customerrors-setting-in-sharepoint-2010.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change icoin in SharePoint 2010 &#8211; ByExtension Element</title>
		<link>http://www.ukoom.com/change-icoin-in-sharepoint-2010-byextension-element.htm</link>
		<comments>http://www.ukoom.com/change-icoin-in-sharepoint-2010-byextension-element.htm#comments</comments>
		<pubDate>Mon, 11 Apr 2011 18:24:57 +0000</pubDate>
		<dc:creator>ukoom</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=1245</guid>
		<description><![CDATA[The ByExtension element defines icons for documents according to their file name extensions. This element is used in DOCICON.XML to drive mapping between file extensions and their corresponding document library icons. In general, there are two ways that mapping can be performed: by extension (for example, the ByExtension element can be used to map .xls [...]]]></description>
			<content:encoded><![CDATA[<p>The <strong>ByExtension</strong> element defines icons for documents according to their file name extensions.</p>
<p>This element is used in DOCICON.XML to drive mapping between file extensions and their corresponding document library icons.</p>
<p>In general, there are two ways that mapping can be performed: by extension (for example, the <strong>ByExtension</strong> element can be used to map .xls to the appropriate icon for an Excel file) and by ProgID (an HTML document that contains <code>&lt;META Name="ProgId" Content="Word.Document"&gt;</code> would map to an icon for Word by using the <strong>ByProgID</strong> element).</p>
<p>If you want the document library feature to support a new file extension, add the extension to a <strong>ByExtension</strong> section and then restart the server.</p>
<h4>Example</h4>
<p>The following example defines file icons by both ProgIDs and file extensions, but it also sets a default icon for new documents.</p>
<pre>&lt;DocIcons&gt;
  &lt;ByProgID&gt;
    &lt;Mapping Key="Excel.Sheet" Value="ichtmxls.gif"/&gt;
    &lt;Mapping Key="PowerPoint.Slide" Value="ichtmppt.gif"/&gt;
    &lt;Mapping Key="Word.Document" Value="ichtmdoc.gif"/&gt;
  &lt;/ByProgID&gt;
  &lt;ByExtension&gt;
    &lt;Mapping Key="doc" Value="icdoc.gif"/&gt;
    &lt;Mapping Key="gif" Value="icgif.gif"/&gt;
    &lt;Mapping Key="htm" Value="ichtm.gif"/&gt;
    &lt;Mapping Key="html" Value="ichtm.gif"/&gt;
    &lt;Mapping Key="ppt" Value="icppt.gif"/&gt;
  &lt;/ByExtension&gt;
  &lt;Default&gt;
    &lt;Mapping Value="icgen.gif"/&gt;
  &lt;/Default&gt;
&lt;/DocIcons&gt;

Reference:

http://msdn.microsoft.com/en-us/library/ms948139.aspx</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/change-icoin-in-sharepoint-2010-byextension-element.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configure Adobe PDF IFilter in SharePoint 2010</title>
		<link>http://www.ukoom.com/configure-adobe-pdf-ifilter-in-sharepoint-2010.htm</link>
		<comments>http://www.ukoom.com/configure-adobe-pdf-ifilter-in-sharepoint-2010.htm#comments</comments>
		<pubDate>Mon, 11 Apr 2011 18:22:19 +0000</pubDate>
		<dc:creator>ukoom</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=1243</guid>
		<description><![CDATA[We need configure Adboe PDF IFilter to index, crawl the PDF files in SharePoint 2010. Below lists the basic steps, hope it helps. Download and install the Adobe PDF iFilter. It is free!!! Configure the Adboe PDF icon so that the PDF file will be displayed with PDF icon. Configure SharePoint Foundation search service via [...]]]></description>
			<content:encoded><![CDATA[<p>We need configure Adboe PDF IFilter to index, crawl the PDF files in SharePoint 2010.</p>
<p>Below lists the basic steps, hope it helps.</p>
<ul>
<li>Download and install the Adobe PDF iFilter. It is free!!!</li>
<li>Configure the Adboe PDF icon so that the PDF file will be displayed with PDF icon.</li>
<li>Configure SharePoint Foundation search service via Central Admin to index and crawl the PDF files.</li>
<li>Configure the SharePoint site to allow user open or download PDF files correctly.</li>
</ul>
<p>We can follow below articles to  configure the SharePoint 2010.</p>
<p>Reference:</p>
<p>http://nickgrattan.wordpress.com/2010/06/14/adobe-pdf-ifilter-indexing-with-sharepoint%C2%A02010/</p>
<p>http://www.sharepointusecases.com/index.php/2011/02/automate-pdf-configuration-for-sharepoint-2010-via-powershell/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/configure-adobe-pdf-ifilter-in-sharepoint-2010.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adlib PDF for SharePoint 2010</title>
		<link>http://www.ukoom.com/adlib-pdf-for-sharepoint-2010.htm</link>
		<comments>http://www.ukoom.com/adlib-pdf-for-sharepoint-2010.htm#comments</comments>
		<pubDate>Mon, 11 Apr 2011 18:11:59 +0000</pubDate>
		<dc:creator>ukoom</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=1240</guid>
		<description><![CDATA[Original article: http://blog.adlibsoftware.com/2010/06/29/adlib-pdf-for-sharepoint-2010-link-your-pdf-rendition-back-to-the-source/ UKOOM&#8217;s comment:  A good news for enterprise. Adlib is the mature PDF conversion product which is used in lots of big company. This is the first in a 3-part series reviewing the features of Adlib PDF for SharePoint 2010 that extend and embrace the SharePoint 2010 environment. Using the new Document ID feature [...]]]></description>
			<content:encoded><![CDATA[<p>Original article: http://blog.adlibsoftware.com/2010/06/29/adlib-pdf-for-sharepoint-2010-link-your-pdf-rendition-back-to-the-source/</p>
<p>UKOOM&#8217;s comment:  A good news for enterprise. Adlib is the mature PDF conversion product which is used in lots of big company.</p>
<p><em>This is the  first in a 3-part series reviewing the features of  Adlib PDF for  SharePoint 2010 that extend and embrace the SharePoint  2010 environment.</em></p>
<p>Using the new <a title="Document ID" href="http://blogs.technet.com/b/blairb/archive/2009/10/20/new-document-id-feature-in-sharepoint-2010.aspx" target="_blank">Document ID</a> feature  in SharePoint 2010, it is possible to create a link back to  the source  document from which a PDF file was created. This capability  is easily  configured with <a title="Adlib PDF for SharePoint" href="http://www.adlibsoftware.com/pdfsharepoint.aspx" target="_self">Adlib PDF for SharePoint</a>.</p>
<p>It  is often useful to make a PDF rendition (i.e. a PDF copy) of a  document  so that it can shared in an easily accessible and secure way  with  employees, partners, or customers. When it is time to make changes  to  this content, you have to edit the source document and then  re-render  it. If the original source and PDF rendition are stored in  the same  document library, folder or <a title="document set" href="http://www.adlibsoftware.com/sharepoint-2010-features-document-sets.aspx?blogid=353" target="_self">document set</a>, it isn’t difficult to find the source because they share a file name. If they are not stored in the same place, search using <a title="metadata within SharePoint 2010" href="http://www.adlibsoftware.com/sharepoint-2010-metadata.aspx" target="_self">metadata within SharePoint 2010</a> can also be used.</p>
<p>A  quick way of creating a link between documents rendered in Adlib  PDF  for SharePoint and the source document is to take advantage of the  new <a title="Document ID feature in SharePoint 2010" href="http://www.adlibsoftware.com/sharepoint-2010-documentid.aspx" target="_self">Document ID feature in SharePoint 2010</a>. The advantage of using this feature is that the link will remain valid even if the source document is moved within SharePoint.</p>
<p>Our  document conversion workflows don’t create a link back to the  source  document out of the box, but can be easily configured to do so  without  changing any code. We simply configured the workflows to get  the  Document ID of the document being converted, and insert it into a   SharePoint column for the rendition called “Source Document” (see image   below). As long as this column had been defined, it will be populated   with the Document ID link.</p>
<p>This functionality was shown as part of the demonstration portion of our recent webinar - <a title="Go with the Workflow: PDF for SharePoint 2010." href="http://www.adlibsoftware.com/sharepoint-2010-go-with-the-workflow-info-watch-webinar.aspx" target="_self"><strong>Go with the Workflow: PDF for SharePoint 2010</strong>.</a></p>
<p>Stay tuned for Part 2: How using Adlib <a title="PDF for SharePoint 2010" href="http://www.adlibsoftware.com/pdfsharepoint.aspx" target="_self">PDF for SharePoint 2010</a> lets  you include document conversion workflows within larger business   process workflows created using Microsoft SharePoint Designer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/adlib-pdf-for-sharepoint-2010.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips and Tricks for Developing with Windows SharePoint Services &#8211; SharePoint 2003</title>
		<link>http://www.ukoom.com/tips-and-tricks-for-developing-with-windows-sharepoint-services-sharepoint-2003.htm</link>
		<comments>http://www.ukoom.com/tips-and-tricks-for-developing-with-windows-sharepoint-services-sharepoint-2003.htm#comments</comments>
		<pubDate>Fri, 08 Apr 2011 18:47:19 +0000</pubDate>
		<dc:creator>ukoom</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2003]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=1237</guid>
		<description><![CDATA[This article is from MSDN http://msdn.microsoft.com/en-us/library/dd583162%28v=office.11%29.aspx Summary: Learn programming techniques that can help make your Windows SharePoint Services Web Parts and applications faster, safer and more reliable, easier to deploy, and even more user-friendly. Author Marco Bellinaso compiled this collection of tips and tricks into a well-organized, single source while working on a large workflow [...]]]></description>
			<content:encoded><![CDATA[<p>This article is from MSDN</p>
<p>http://msdn.microsoft.com/en-us/library/dd583162%28v=office.11%29.aspx</p>
<p><strong>Summary</strong>: Learn programming techniques  that can help make your Windows SharePoint Services Web Parts and  applications faster, safer and more reliable, easier to deploy, and even  more user-friendly. Author Marco Bellinaso compiled this collection of  tips and tricks into a well-organized, single source while working on a  large workflow project for Windows SharePoint Services. Reap the  benefits of his experience to get more out of your development efforts  with Windows SharePoint Services. (26 printed pages)</p>
<h4>Contents</h4>
<p><a href="http://msdn.microsoft.com/en-us/library/dd583162%28v=office.11%29.aspx#wsstipstricks_settingdefaultvaluesforwebpartpropertiesinthedwpfile">Setting Default Values for Web Part Properties in the .dwp File</a><br />
<a href="http://msdn.microsoft.com/en-us/library/dd583162%28v=office.11%29.aspx#wsstipstricks_writingwebpartswithpreviewsupportforfrontpage">Writing Web Parts with Preview Support for FrontPage</a><br />
<a href="http://msdn.microsoft.com/en-us/library/dd583162%28v=office.11%29.aspx#wsstipstricks_customizingthewebpartshortcutmenu">Customizing the Web Part Shortcut Menu</a><br />
<a href="http://msdn.microsoft.com/en-us/library/dd583162%28v=office.11%29.aspx#wsstipstricks_usingimpersonationtoaccessdatathatthecurrentusercannotaccess">Using Impersonation to Access Data that the Current User Cannot Access</a><br />
<a href="http://msdn.microsoft.com/en-us/library/dd583162%28v=office.11%29.aspx#wsstipstricks_referringtolistsandfields">Referring to Lists and Fields</a><br />
<a href="http://msdn.microsoft.com/en-us/library/dd583162%28v=office.11%29.aspx#wsstipstricks_makingupdateswiththeallowunsafeupdatespropertyofspwebclass">Making Updates with the AllowUnsafeUpdates Property of SPWeb Class</a><br />
<a href="http://msdn.microsoft.com/en-us/library/dd583162%28v=office.11%29.aspx#wsstipstricks_filteringacollectionoflistitemsbyusingviewsorcamlqueries">Filtering a Collection of List Items by Using Views or CAML Queries</a><br />
<a href="http://msdn.microsoft.com/en-us/library/dd583162%28v=office.11%29.aspx#wsstipstricks_usingthedatatableobjecttoworkwithlistitemsinmemory">Using the DataTable Object to Work with List Items in Memory</a><br />
<a href="http://msdn.microsoft.com/en-us/library/dd583162%28v=office.11%29.aspx#wsstipstricks_customizingthecontextmenuofdocumentlibraryitems">Customizing the Context Menu of Document Library Items</a><br />
<a href="http://msdn.microsoft.com/en-us/library/dd583162%28v=office.11%29.aspx#wsstipstricks_conclusion">Conclusion</a><br />
<a href="http://msdn.microsoft.com/en-us/library/dd583162%28v=office.11%29.aspx#wsstipstricks_abouttheauthor">About the Author</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/tips-and-tricks-for-developing-with-windows-sharepoint-services-sharepoint-2003.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

