<?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>Richard Willis &#187; SharePoint</title>
	<atom:link href="http://blog.salamandersoft.co.uk/index.php/category/sharepoint/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.salamandersoft.co.uk</link>
	<description>SalamanderSoft, SharePoint Learning Kit, Microsoft Learning Gateway &#38; SharePoint Development</description>
	<lastBuildDate>Thu, 29 Jul 2010 00:13:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Update a Dll in the GAC From the Command Line</title>
		<link>http://blog.salamandersoft.co.uk/index.php/2010/07/update-a-dll-in-the-gac-from-the-command-line/</link>
		<comments>http://blog.salamandersoft.co.uk/index.php/2010/07/update-a-dll-in-the-gac-from-the-command-line/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 08:22:40 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Command Line]]></category>

		<guid isPermaLink="false">http://blog.salamandersoft.co.uk/index.php/2010/07/update-a-dll-in-the-gac-from-the-command-line/</guid>
		<description><![CDATA[I’ve blogged before on how to Easily add a dll to the GAC, but that involves two instances of Windows Explorer and the mouse.
It would be quicker and easier to use the command line to update a dll in the GAC. You can do this with the Global Assembly Cache Tool gacutil, but this is [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve blogged before on how to <a href="http://blog.salamandersoft.co.uk/index.php/2008/12/easily-add-a-dll-to-the-gac/">Easily add a dll to the GAC</a>, but that involves two instances of Windows Explorer and the mouse.</p>
<p>It would be quicker and easier to use the command line to update a dll in the GAC. You can do this with the <a href="http://msdn.microsoft.com/en-us/library/ex0ss12c%28VS.80%29.aspx">Global Assembly Cache Tool gacutil</a>, but this is only present if you have the .net SDK or Windows SDK installed. This is going to be the case with your development machine, but you don’t really want to be installing it on all your test servers.</p>
<p>To get round this I knocked up a quick utility which will remove an existing version of a dll from the GAC and then install the latest version. The code is:</p>
</p>
<div id="codeSnippetWrapper">
<pre id="codeSnippet" class="csharpcode"><span class="kwrd">using</span> System;<span class="kwrd">using</span> System.Globalization;<span class="kwrd">using</span> System.EnterpriseServices.Internal;

<span class="kwrd">namespace</span> Test{    <span class="kwrd">public</span> <span class="kwrd">class</span> GacInstall    {        <span class="kwrd">public</span> <span class="kwrd">static</span> <span class="kwrd">void</span> Main(<span class="kwrd">string</span>[] arguments)        {            <span class="kwrd">try</span>            {                <span class="kwrd">string</span> assemblyPath = arguments[0];                Publish publish = <span class="kwrd">new</span> Publish();                publish.GacRemove(assemblyPath);                publish.GacInstall(assemblyPath);            }            <span class="kwrd">catch</span> (Exception e)            {                Console.WriteLine(e);            }        }    }}</pre>
<p></div>
<p>You can then use it by passing it the dll you want as a command line parameter e.g.</p>
<p>GacInstall MyUpdatedCode.dll</p>
<p>Assuming that MyUpdatedCode.dll is in the same directory.</p>
<p>Combined with my last tip <a href="http://blog.salamandersoft.co.uk/index.php/2010/07/recycle-an-individual-application-pool-from-the-command-line/">Recycle An Individual Application Pool From The Command Line</a> you can now write a bat or cmd file to replace the dll in the GAC and recycle the application pool with 2 key presses: The up arrow key and then return.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.salamandersoft.co.uk/index.php/2010/07/update-a-dll-in-the-gac-from-the-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delete Multiple Web Parts From a SharePoint Page</title>
		<link>http://blog.salamandersoft.co.uk/index.php/2009/06/delete-multiple-web-parts-from-a-sharepoint-page/</link>
		<comments>http://blog.salamandersoft.co.uk/index.php/2009/06/delete-multiple-web-parts-from-a-sharepoint-page/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 13:57:40 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://blog.salamandersoft.co.uk/index.php/2009/06/delete-multiple-web-parts-from-a-sharepoint-page/</guid>
		<description><![CDATA[If you ever need to quickly delete multiple web parts from a SharePoint page, there’s a quick and easy way.
Just add ?contents=1 to the end of the url, directly after the .aspx. If there’s already a query string there (the bit after the ?) then delete it and replace with contents=1.
For example to delete multiple [...]]]></description>
			<content:encoded><![CDATA[<p>If you ever need to quickly delete multiple web parts from a SharePoint page, there’s a quick and easy way.</p>
<p>Just add ?contents=1 to the end of the url, directly after the .aspx. If there’s already a query string there (the bit after the ?) then delete it and replace with contents=1.</p>
<p>For example to delete multiple web parts from <a title="http://cmis/sites/mis/default.aspx" href="http://cmis/sites/mis/default.aspx">http://cmis/sites/mis/default.aspx</a> use <a title="http://cmis/sites/mis/default.aspx" href="http://cmis/sites/mis/default.aspx?contents=1">http://cmis/sites/mis/default.aspx?contents=1</a>.</p>
<p>You can then select multiple web parts and hit delete to get rid of them all at once.</p>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="webPartMaintenance" border="0" alt="webPartMaintenance" src="http://blog.salamandersoft.co.uk/wp-content/uploads/DeleteMultipleWebPartsFromaSharePointPag_CF39/webPartMaintenance.png" width="604" height="261" /> </p>
<p>This is also useful for getting rid of web parts which cause fatal errors on the page and closed web parts.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.salamandersoft.co.uk/index.php/2009/06/delete-multiple-web-parts-from-a-sharepoint-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>European Best Practices SharePoint Conference</title>
		<link>http://blog.salamandersoft.co.uk/index.php/2009/03/european-best-practices-sharepoint-conference/</link>
		<comments>http://blog.salamandersoft.co.uk/index.php/2009/03/european-best-practices-sharepoint-conference/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 14:51:24 +0000</pubDate>
		<dc:creator>RichardWillis</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://blog.salamandersoft.co.uk/2009/03/25/EuropeanBestPracticesSharePointConference.aspx</guid>
		<description><![CDATA[I&#8217;ve finally got round to booking this. It&#8217;s on 6-8 April in London and looks like it will be a great conference. Don&#8217;t miss Andrew and Alex&#8217;s lunchtime session on Wednesday about SharePoint in Education. Find out more on their web site.
If anyone else is going it would be great to meet up. If anyone [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve finally got round to booking this. It&#8217;s on 6-8 April in London and looks like it will be a great conference. Don&#8217;t miss Andrew and Alex&#8217;s lunchtime session on Wednesday about SharePoint in Education. Find out more on their <a href="http://www.sharepointbestpractices.co.uk">web site</a>.</p>
<p>If anyone else is going it would be great to meet up. If anyone is interested we could try to find some space for an SLK discussion group. Let me know if you are interested in either of those and I&#8217;ll see what we can arrange.</p>
<p><img src="http://blog.salamandersoft.co.uk/content/binary/spbp.PNG" border="0" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.salamandersoft.co.uk/index.php/2009/03/european-best-practices-sharepoint-conference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint Manager 2007</title>
		<link>http://blog.salamandersoft.co.uk/index.php/2009/03/sharepoint-manager-2007/</link>
		<comments>http://blog.salamandersoft.co.uk/index.php/2009/03/sharepoint-manager-2007/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 14:02:53 +0000</pubDate>
		<dc:creator>RichardWillis</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://blog.salamandersoft.co.uk/2009/03/03/SharePointManager2007.aspx</guid>
		<description><![CDATA[I&#8217;ve just come across a great free tool for SharePoint 2007. It&#8217;s SharePoint Manager 2007 and is hosted over at CodePlex. It&#8217;s quite simply an object model explorer for SharePoint, allowing you to drill down into any detail of SharePoint, from server properties, to web users even down to individual list items. It will even [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just come across a great free tool for SharePoint 2007. It&#8217;s <a href="http://www.codeplex.com/spm">SharePoint Manager 2007</a> and is hosted over at CodePlex. It&#8217;s quite simply an object model explorer for SharePoint, allowing you to drill down into any detail of SharePoint, from server properties, to web users even down to individual list items. It will even let you modify the properties if you&#8217;re feeling brave.</p>
<p>I&#8217;ve lost count of all the little console utilities I&#8217;ve written to dump things like list fields, view CAML etc, all of which you can browse to with the tool. I think that it&#8217;s going to save me a lot of time and increase my knowledge of SharePoint.</p>
<p><img src="http://blog.salamandersoft.co.uk/content/binary/spm.PNG" border="0"></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.salamandersoft.co.uk/index.php/2009/03/sharepoint-manager-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding out if SharePoint Objects are Disposed Correctly</title>
		<link>http://blog.salamandersoft.co.uk/index.php/2009/02/finding-out-if-sharepoint-objects-are-disposed-correctly/</link>
		<comments>http://blog.salamandersoft.co.uk/index.php/2009/02/finding-out-if-sharepoint-objects-are-disposed-correctly/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 00:04:30 +0000</pubDate>
		<dc:creator>RichardWillis</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[SLK]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://blog.salamandersoft.co.uk/2009/02/27/FindingOutIfSharePointObjectsAreDisposedCorrectly.aspx</guid>
		<description><![CDATA[Everyone should know by now that certain SharePoint objects, including SPSite and SPWeb need to be disposed of when you have finished with them or you will get a memory leak. If you want to refresh your memory have a look at the MSDN white papers Best Practices: Using Disposable Windows SharePoint Services Objects on [...]]]></description>
			<content:encoded><![CDATA[<p>Everyone should know by now that certain SharePoint objects, including SPSite and SPWeb need to be disposed of when you have finished with them or you will get a memory leak. If you want to refresh your memory have a look at the MSDN white papers <a href="http://msdn.microsoft.com/en-us/library/aa973248.aspx">Best Practices: Using Disposable Windows SharePoint Services Objects on MSDN</a> and <a href="http://msdn2.microsoft.com/en-us/library/bb687949.aspx">Best Practices: Common Coding Issues When using the SharePoint object model</a>.</p>
<p>What you may not know is that there are a couple of tools/techniques which can help you find areas in your code where you are not disposing of objects correctly.
<ol>
<li><a href="http://code.msdn.microsoft.com/SPDisposeCheck">SPDisposeCheck</a>. This is a tool which will analyze your assemblies to search for coding patterns which lead to objects not being disposed correctly. It&#8217;s a great tool and worth running regularly on your assemblies.</li>
<li>SPRequestStackTrace registry value. Creating the registry key</li>
</ol>
<blockquote><p>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\Web Server Extensions\HeapSettings<br />SPRequestStackTrace: DWORD = 1 </p>
<p>Will cause the SharePoint runtime to log a stack trace everytime a SPRequest object is not disposed of correctly. This will actually pick up all the types of objects not being disposed of as internally the problem with not disposing of them is that they contain a reference to SPRequest.</p>
</blockquote>
<p>At this point I have to say thank you to <a href="http://www.codeplex.com/site/users/view/JaredKahlil">Jared Kahlil</a> who pointed out a memory leak in the SLK by using the second method above and started my research into both of these methods. Unfortunately we can&#8217;t use SPDisposeCheck on SLK as it checks to see if the file name begins with Microsoft and if there are any namespaces beginning with Microsoft, and if so ignores the assembly.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.salamandersoft.co.uk/index.php/2009/02/finding-out-if-sharepoint-objects-are-disposed-correctly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Sites in Schools</title>
		<link>http://blog.salamandersoft.co.uk/index.php/2009/01/my-sites-in-schools/</link>
		<comments>http://blog.salamandersoft.co.uk/index.php/2009/01/my-sites-in-schools/#comments</comments>
		<pubDate>Wed, 21 Jan 2009 16:54:06 +0000</pubDate>
		<dc:creator>RichardWillis</dc:creator>
				<category><![CDATA[My Sites]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://blog.salamandersoft.co.uk/2009/01/21/MySitesInSchools.aspx</guid>
		<description><![CDATA[I&#8217;ve had several conversations with several schools about MOSS My Sites. A lot of people are finding that they are too powerful and the pupils have too much control over what they can do in them. Personally I think that they are a great tool for collaboration and would let them loose with them, possibly [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had several conversations with several schools about MOSS My Sites. A lot of people are finding that they are too powerful and the pupils have too much control over what they can do in them. Personally I think that they are a great tool for collaboration and would let them loose with them, possibly after some modification to the default (<a href="http://blog.salamandersoft.co.uk/2009/01/21/CustomisingMySites.aspx">see my previous post</a>) and trialling it with a subset of the school, but I don&#8217;t actually work in a school and deal directly with the problems that might cause.</p>
<p>However, for those who don&#8217;t want to do this, an alternative would be to create sites for the pupils within your normal SharePoint structure, just like your class sites under the Classes tab in MLG. You&#8217;ve then got all your normal permission levels and restrictions you can use, and generally tie it up a lot tighter. You can even define custom permission levels. I&#8217;m working with a few schools on implementing this for pupils and staff using <a href="http://www.salamandersoft.co.uk/sharepoint.html">Salamander SharePoint</a>. </p>
<p>Taking it to another level, a request I&#8217;ve just received from one school is:<br />
<blockquote>
<link rel="File-List" href="file:///C:%5CUsers%5CRichard%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml">
<link rel="themeData" href="file:///C:%5CUsers%5CRichard%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx">
<link rel="colorSchemeMapping" href="file:///C:%5CUsers%5CRichard%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml">
<link rel="File-List" href="file:///C:%5CUsers%5CRichard%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml">
<link rel="themeData" href="file:///C:%5CUsers%5CRichard%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx">
<link rel="colorSchemeMapping" href="file:///C:%5CUsers%5CRichard%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml"><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;"><i>I am quite interested in developing a<br />
                                                                                                                                                                                                                                    SharePoint site, similar to the class sites for every teacher.</i> </span><i><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;">Giving them a kind of My Site where they could post resources, links and a profile etc.&nbsp; I would need the script to create a site for each member of staff based on a template and then assign permissions for the teacher and then for all the students that the teacher teaches.&nbsp; </span></i></p></blockquote>
<p>This is actually quite powerful and really easy with <a href="http://www.salamandersoft.co.uk/sharepoint.html">Salamander SharePoint</a>. It sets up collaboration sites and also the community which can use them, and automatically keeps this community up to date. It&#8217;s requests like these which can add another level to how SharePoint is used in your school.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.salamandersoft.co.uk/index.php/2009/01/my-sites-in-schools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customising My Sites</title>
		<link>http://blog.salamandersoft.co.uk/index.php/2009/01/customising-my-sites/</link>
		<comments>http://blog.salamandersoft.co.uk/index.php/2009/01/customising-my-sites/#comments</comments>
		<pubDate>Wed, 21 Jan 2009 16:37:27 +0000</pubDate>
		<dc:creator>RichardWillis</dc:creator>
				<category><![CDATA[My Sites]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://blog.salamandersoft.co.uk/2009/01/21/CustomisingMySites.aspx</guid>
		<description><![CDATA[I&#8217;ve been asked a few time about how to customise the MOSS My Sites. Unlike SharePoint 2003, the reality is that it&#8217;s not easy. It may seem like a retrograde step, but as they are so powerful, adding a facility to modify all of them becomes difficult.
The easiest and most obvious way, altering the templates, [...]]]></description>
			<content:encoded><![CDATA[<p><font size="2">I&#8217;ve been asked a few time about how to customise the MOSS My Sites. Unlike SharePoint 2003, the reality is that it&#8217;s not easy. It may seem like a retrograde step, but as they are so powerful, adding a facility to modify all of them becomes difficult.</p>
<p>The easiest and most obvious way, altering the templates, is not supported as they are considered a core part of SharePoint. It will work, but Microsoft do not guarantee that they won&#8217;t be overwritten in any upgrade.<br /></font><font size="2"><br />That leaves the only way is by running some custom code. This isn&#8217;t great for anyone who isn&#8217;t a developer. </font><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><font size="2">If you want how it&#8217;s done, Steve Peschka has some great information on how to do this on his <a href="http://blogs.msdn.com/sharepoint/archive/2007/03/22/customizing-moss-2007-my-sites-within-the-enterprise.aspx">blog</a>. Even better than this, he has wrapped it all up as part of the <a href="http://www.codeplex.com/CKS">Community Kit Project for SharePoint</a> on CodePlex and released it as <a href="http://www.codeplex.com/CKS/Release/ProjectReleases.aspx?ReleaseId=2824">MySiteCreate</a>. </p>
<p>What MySiteCreate allows you to do is specify a different master page for the My Sites and also specify web parts and their properties in an xml file. No more messing around with code, just a great tool to let you get on with the job.</font><br /></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.salamandersoft.co.uk/index.php/2009/01/customising-my-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another  Microsoft Technet article mentions SalamanderSoft</title>
		<link>http://blog.salamandersoft.co.uk/index.php/2008/12/another-microsoft-technet-article-mentions-salamandersoft/</link>
		<comments>http://blog.salamandersoft.co.uk/index.php/2008/12/another-microsoft-technet-article-mentions-salamandersoft/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 15:56:30 +0000</pubDate>
		<dc:creator>RichardWillis</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://blog.salamandersoft.co.uk/2008/12/16/AnotherMicrosoftTechnetArticleMentionsSalamanderSoft.aspx</guid>
		<description><![CDATA[SalamanderSoft has been mentioned in another TechNet article, this time about Blatchington Mill School which is titled Example Solution Architecture: Blatchington Mill School. Congratulations to Mark &#38; Sue for all their hard work developing their portal being recognized by Microsoft.
Interestingly it the My Documents web part which is explicitly mentioned, while Salamander SharePoint which is [...]]]></description>
			<content:encoded><![CDATA[<p>SalamanderSoft has been mentioned in another TechNet article, this time about Blatchington Mill School which is titled <a href="http://technet.microsoft.com/en-us/library/dd335971.aspx">Example Solution Architecture: Blatchington Mill School</a>. Congratulations to Mark &amp; Sue for all their hard work developing their portal being recognized by Microsoft.</p>
<p>Interestingly it the My Documents web part which is explicitly mentioned, while Salamander SharePoint which is used to generate the class sites is referenced as a third-party provisioning tool. Salamander SharePoint is much more powerful than My Documents so it&#8217;s strange we&#8217;re mentioned in relationship to one and not the other.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.salamandersoft.co.uk/index.php/2008/12/another-microsoft-technet-article-mentions-salamandersoft/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List View Web Part</title>
		<link>http://blog.salamandersoft.co.uk/index.php/2008/12/list-view-web-part/</link>
		<comments>http://blog.salamandersoft.co.uk/index.php/2008/12/list-view-web-part/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 10:49:47 +0000</pubDate>
		<dc:creator>RichardWillis</dc:creator>
				<category><![CDATA[List View]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Web Parts]]></category>

		<guid isPermaLink="false">http://blog.salamandersoft.co.uk/2008/12/10/ListViewWebPart.aspx</guid>
		<description><![CDATA[I&#8217;ve just finished a beta release of a list view web part for SharePoint. It allows you to display a list from another site even if it is in another site collection. It designed to be as simple as possible to set up.
To use it there&#8217;s 3 properties which you need to set:

Site Url: The [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just finished a beta release of a list view web part for SharePoint. It allows you to display a list from another site even if it is in another site collection. It designed to be as simple as possible to set up.</p>
<p>To use it there&#8217;s 3 properties which you need to set:
<ol>
<li>Site Url: The url of the site the list in on.</li>
<li>List Name: The name of the list.</li>
<li>View Name: The name of the view to use to display the list.</li>
</ol>
<p>The connection to the list is made as the user viewing the web part, so will use their permissions. So if they don&#8217;t have permission on the list, they won&#8217;t see it. </p>
<p>If you want to display a list from another site collection, then it needs to be on the same server.</p>
<p>It&#8217;s only a Beta release so not all Errors have graceful error messages. You can download it from <a href="http://www.salamandersoft.co.uk/webparts/listview.zip">http://www.salamandersoft.co.uk/webparts/listview.zip</a>. The beta will expire on 19 Jan 2009.</p>
<p>Have a go and let me know what you think either in the comments or email to listview@salamandersoft.co.uk. </p>
<p>I&#8217;m sure there&#8217;s other features I could add, but that depends on how popular it is and whether there&#8217;s any demand for them.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.salamandersoft.co.uk/index.php/2008/12/list-view-web-part/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Microsoft TechNet article mentions SalamanderSoft</title>
		<link>http://blog.salamandersoft.co.uk/index.php/2008/11/microsoft-technet-article-mentions-salamandersoft/</link>
		<comments>http://blog.salamandersoft.co.uk/index.php/2008/11/microsoft-technet-article-mentions-salamandersoft/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 09:56:23 +0000</pubDate>
		<dc:creator>RichardWillis</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://blog.salamandersoft.co.uk/2008/11/20/MicrosoftTechNetArticleMentionsSalamanderSoft.aspx</guid>
		<description><![CDATA[Microsoft have published an article on TechNet about using SharePoint at Twynham School titled Example Solution Architecture: Twynham School Learning Gateway. I&#8217;ve worked with Twynham for quite some time now and know how much work they&#8217;ve put into their portal. It&#8217;s great to see them recognised by Microsoft and am pleased to see that SalamanderSoft [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft have published an article on TechNet about using SharePoint at Twynham School titled <a href="http://technet.microsoft.com/en-us/library/cc262582.aspx">Example Solution Architecture: Twynham School Learning Gateway</a>. I&#8217;ve worked with Twynham for quite some time now and know how much work they&#8217;ve put into their portal. It&#8217;s great to see them recognised by Microsoft and am pleased to see that SalamanderSoft is mentioned in the article.</p>
<p>Twynham has done some great stuff with their SharePoint set up and even better are happy to share their experiences. They&#8217;ve even put up a site to showcase what they&#8217;ve done at&nbsp; <a title="http://gateway.twynhamschool.com/supportinglearning/onlinereporting/default.aspx" href="http://gateway.twynhamschool.com/supportinglearning/onlinereporting/default.aspx">http://gateway.twynhamschool.com/supportinglearning/onlinereporting/default.aspx</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.salamandersoft.co.uk/index.php/2008/11/microsoft-technet-article-mentions-salamandersoft/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
