<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Sharepoint 2007 Server Skills</title>
	<atom:link href="http://sharepointskills.co.uk/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://sharepointskills.co.uk</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sun, 04 Oct 2009 22:00:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Database Normalization</title>
		<link>http://sharepointskills.co.uk/?p=88</link>
		<comments>http://sharepointskills.co.uk/?p=88#comments</comments>
		<pubDate>Sun, 04 Oct 2009 20:52:01 +0000</pubDate>
		<dc:creator>Sheraz Alvi</dc:creator>
				<category><![CDATA[Databases]]></category>

		<guid isPermaLink="false">http://sharepointskills.co.uk/?p=88</guid>
		<description><![CDATA[Normalizing any data is the key to successful database development. There are many techniques and approaches to this but the main aim is always to divide the given data into the smallest logical groups and avoid any duplication of any kind.]]></description>
			<content:encoded><![CDATA[
<!-- Quick Adsense Wordpress Plugin: http://techmilieu.com/quick-adsense -->
<div style="float:left;margin:5px 5px 5px 0;">
<script type="text/javascript"><!--
google_ad_client = "pub-7836536280258413";
/* 300x250, created 10/4/09 */
google_ad_slot = "8139762344";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>

<p>Normalizing any data is the key to successful database development. There are many techniques and approaches to this but the main aim is always to divide the given data into the smallest logical groups and avoid any duplication of any kind.</p>
<p>The main thing is we to understand how the data we&#8217;re tracking relate to each other.</p>
<p>Consider grade. Can a student have a grade all by itself? No, the student has to be in a class in order to eventually receive a grade. It also follows that grade is going to depend on which student we&#8217;re talking about, and even that&#8217;s not enough; we have to know which class this particular student took to determine the grade. After all, the same student can flunk English while passing Math, right? Therefore, one possible logical conclusion is that grade is an attribute of the junction Student-Course and thus belongs in the table representing such junction. You will want to read up on many-many relationship about how this actually works out.</p>
<p>A table in a relational database is said to be in a certain normal form if it satisfies certain constraints.  <a href="http://www.knowledgerush.com/kr/encyclopedia/Edgar_F._Codd/">Edgar F. Codd</a>&#8217;s original work defined three such forms but there are now other generally accepted normal forms. We give here a short informal overview of the most common ones. Each normal form below represents a stronger condition than the previous one (in the order below). For most practical purposes, databases are considered normalized if they adhere to third normal form.</p>
<ul>
<li><strong><em>First Normal Form</em> (or <em>1NF</em>)</strong> requires that all column values in a table are <em>atomic</em> (e.g., a number is an <a href="http://www.knowledgerush.com/kr/encyclopedia/Atomic_%28computer_science%29/">atomic value</a>, while a list or a set is not). For example, normalization eliminates repeating groups by putting each into a separate table and connecting them with a <a href="http://www.knowledgerush.com/kr/encyclopedia/Primary_key/">primary key</a>-<a href="http://www.knowledgerush.com/kr/encyclopedia/Foreign_key/">foreign key</a> relationship.</li>
<li><strong><em>Second Normal Form</em> (or <em>2NF</em>) </strong>requires that there are no non-trivial <a href="http://www.knowledgerush.com/kr/encyclopedia/Functional_dependency/">functional dependencies</a> of a non-key attribute on a part of a <a href="http://www.knowledgerush.com/kr/encyclopedia/Candidate_key/">candidate key</a>.</li>
<li><strong><em>Third Normal Form</em> (or <em>3NF</em>) </strong>requires that there are not non-trivial functional dependencies of non-key attributes on something else than a superset of a candidate key.</li>
<li><strong><em>Boyce-Codd Normal Form</em> (or <em>BCNF</em>)</strong> requires that there are no non-trival functional dependencies of attributes on something else than a superset of a candidate key. At this stage, all attributes are dependent on a key, a whole key and nothing but a key (excluding trivial dependencies, like A-&gt;A).</li>
<li><strong><em>Fourth Normal Form</em> (or <em>4NF</em>) </strong>requires that there no non-trivial multi-valued dependencies of attribute sets on something else than a superset of a candidate key.</li>
<li><strong><em>Fifth Normal Form</em> (or <em>5NF</em> or <em>PJ/NF</em>) </strong>requires that there are no non-trivial join dependencies that do not follow from the key constraints.</li>
<li><strong><em>Domain-Key Normal Form</em> (or <em>DK/NF</em>) </strong>requires that all constraints follow from the domain and the key constraints.</li>
</ul>

<div style="font-size:0px;height:0px;line-height:0px;margin:0;padding:0;clear:both"></div>]]></content:encoded>
			<wfw:commentRss>http://sharepointskills.co.uk/?feed=rss2&amp;p=88</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Application Templates for Windows SharePoint Services 3.0</title>
		<link>http://sharepointskills.co.uk/?p=78</link>
		<comments>http://sharepointskills.co.uk/?p=78#comments</comments>
		<pubDate>Tue, 07 Jul 2009 09:15:28 +0000</pubDate>
		<dc:creator>Sheraz Alvi</dc:creator>
				<category><![CDATA[Customization]]></category>

		<guid isPermaLink="false">http://sharepointskills.co.uk/?p=78</guid>
		<description><![CDATA[Application templates are out-of-the-box custom scenarios tailored to address the needs and requirements of specific business processes or sets of tasks in organizations of any size. They also provide a starting point for partners and developers looking to build deeper SharePoint-based solutions. The templates make use of Windows SharePoint Services 3.0 capabilities and are compatible [...]]]></description>
			<content:encoded><![CDATA[<p>Application templates are out-of-the-box custom scenarios tailored to address the needs and requirements of specific business processes or sets of tasks in organizations of any size. They also provide a starting point for partners and developers looking to build deeper SharePoint-based solutions. The templates make use of Windows SharePoint Services 3.0 capabilities and are compatible with Microsoft Office SharePoint Designer 2007 to help make customization easier.</p>
<p>Application Templates for Windows SharePoint Services 3.0 are separated into two groups, site admin templates and server admin templates, providing the right combination of integration with the platform and ease-of-deployment within an organization.</p>
<p>The 20 Site Admin templates are available for public download via the  links below. Click on the links on the left navigation bar for the respective  read-only demo sites created with these templates.</p>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top"><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=79080296-A3E9-462C-B66E-55339A79B2C9"> Board of Directors</a></td>
</tr>
<tr>
<td valign="top"><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=4423BFEC-8BF5-4DAB-B106-199B5D5A7DDD&amp;displaylang=en"> Business Performance Reporting</a></td>
</tr>
<tr>
<td valign="top"><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=5C75A23C-B4AC-47F3-9AE5-45296486F197&amp;displaylang=en"> Case Management for Government Agencies</a></td>
</tr>
<tr>
<td valign="top"><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=5C75A23C-B4AC-47F3-9AE5-45296486F197&amp;displaylang=en"> Classroom Management</a></td>
</tr>
<tr>
<td valign="top"><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=EE330B40-AFA3-47BF-929C-5CC4A4A83BA8&amp;displaylang=en"> Clinical Trial Initiation and Management</a></td>
</tr>
<tr>
<td valign="top"><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=88A5FBDC-DB4C-4825-85AA-F5BA2E186E61&amp;displaylang=en"> Competitive Analysis Site</a></td>
</tr>
<tr>
<td valign="top"><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=B8485707-EBE0-4B9D-855F-D3D4046EBF40&amp;displaylang=en"> Discussion Database</a></td>
</tr>
<tr>
<td valign="top"><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=48564BAD-160D-4110-873A-E6723549B210&amp;displaylang=en"> Disputed Invoice Management</a></td>
</tr>
<tr>
<td valign="top"><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=1029807F-FD44-4704-936F-BD19A6455351&amp;displaylang=en"> Employee Activities Site</a></td>
</tr>
<tr>
<td valign="top"><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=03FB53CB-A083-4794-AF66-95191648C99B&amp;displaylang=en"> Employee Self-Service Benefits</a></td>
</tr>
<tr>
<td valign="top"><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=B5206277-550C-44DA-A2D5-D7E32E3B6B8F&amp;displaylang=en"> Employee Training Scheduling and Materials</a></td>
</tr>
<tr>
<td valign="top"><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=F9AD746C-B203-49F1-9C7A-AC799FD8EEC4&amp;displaylang=en"> Equity Research</a></td>
</tr>
<tr>
<td valign="top"><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=F4ACB07A-3CF2-40D8-BE35-FA160EF8B931&amp;displaylang=en"> Integrated Marketing Campaign Tracking</a></td>
</tr>
<tr>
<td valign="top"><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=2EF6F9E5-5DF2-42B4-9250-1CF8F091E11D&amp;displaylang=en"> Manufacturing Process Management</a></td>
</tr>
<tr>
<td valign="top"><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=A61506B4-6818-4453-A2D1-978AE4CF1567&amp;displaylang=en"> New Store Opening</a></td>
</tr>
<tr>
<td valign="top"><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=14C8AE74-4953-4E5B-9243-3687515A4437&amp;displaylang=en"> Product and Marketing Requirements Planning</a></td>
</tr>
<tr>
<td valign="top"><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=E66111C2-7B6B-4329-BAA0-E3D3B7DB1F9C&amp;displaylang=en"> Request for Proposal</a></td>
</tr>
<tr>
<td valign="top"><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=F811D8C1-2C55-4960-8B59-25808DB5F793&amp;displaylang=en"> Sports League</a></td>
</tr>
<tr>
<td valign="top"><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=F6D316AE-E6AA-489A-8D0E-D9408D19C147&amp;displaylang=en"> Team Work Site</a></td>
</tr>
<tr>
<td valign="top"><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=823A28A4-3FA3-4B55-B8AB-96FF5155752F&amp;displaylang=en"> Timecard Management</a></td>
</tr>
</tbody>
</table>
<p>For your convenience, you can download all 20 of the above templates <a href="http://www.microsoft.com/technet/windowsserver/sharepoint/wssapps/templates/privacy3.mspx"> here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://sharepointskills.co.uk/?feed=rss2&amp;p=78</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to delete &quot;Title&quot; column in Sharepoint Lists</title>
		<link>http://sharepointskills.co.uk/?p=56</link>
		<comments>http://sharepointskills.co.uk/?p=56#comments</comments>
		<pubDate>Wed, 06 May 2009 12:39:31 +0000</pubDate>
		<dc:creator>Sheraz Alvi</dc:creator>
				<category><![CDATA[Basics]]></category>

		<guid isPermaLink="false">http://sharepointskills.co.uk/?p=56</guid>
		<description><![CDATA[“Title” column could be very annoying and confusing esp. if you don’t have any Text based columns in your List (you cannot change datatype of this column) or else while updating lists programmatically.]]></description>
			<content:encoded><![CDATA[<div class="postentry">
<p>“Title” column could be very annoying and confusing esp. if you don’t have any Text based columns in your List (you cannot change datatype of this column) or else while updating lists programmatically. Let’s say you renamed “Title” Column to “Employee Name” (using list settings web interface) but when you try updating this column value programmtically you need to acces the column using its Original Name (”Title”) and not with its Display Name (”Employee Name”). Changing column name through List Settings Page will only update “Display Name” property of the Field.</p>
<blockquote><p><code>listItem["Title"] = “Employee Name”;</code></p></blockquote>
<p>There is no way to Hide or Delete “Title” Column from List Settings User Interface. You can hide it by deselecting this column in your View but then you cannot edit the item as you wouldn’t have any Column linked to edit menu.</p>
<p>The only way to hide the “Title” Column is by writing a Custom List Definition, remember every Custom List MUST have this column as this is included in the Global ONET.xml (for Type “0″ List).</p>
<p>The best way to hide this column is to include below fields in your List Definition.</p>
<blockquote><p><code> &lt;Field ID="{fa564e0f-0c70-4ab9-b863-0177e6ddd247}" Name="Title" ReadOnly="TRUE" Required="FALSE" Hidden="TRUE" SourceID="http://schemas.microsoft.com/sharepoint/v3" StaticName="Title"&gt;<br />
&lt;/Field&gt;<br />
&lt;Field ID="{82642ec8-ef9b-478f-acf9-31f7d45fbc31}" Name="LinkTitle" Hidden="TRUE" SourceID="http://schemas.microsoft.com/sharepoint/v3" StaticName="LinkTitle"&gt;<br />
&lt;/Field&gt;<br />
&lt;Field ID="{bc91a437-52e7-49e1-8c4e-4698904b2b6d}" Name="LinkTitleNoMenu" Hidden="TRUE" SourceID="http://schemas.microsoft.com/sharepoint/v3" StaticName="LinkTitleNoMenu"&gt;<br />
&lt;/Field&gt;</code></p></blockquote>
<p>Remember by doing so you have to implement Edit Menu for one of your required fields for users to be able to edit a List item.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://sharepointskills.co.uk/?feed=rss2&amp;p=56</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sync Outlook with iPhone &amp; iPod Touch WITHOUT iTunes through Google Calendar</title>
		<link>http://sharepointskills.co.uk/?p=47</link>
		<comments>http://sharepointskills.co.uk/?p=47#comments</comments>
		<pubDate>Thu, 30 Apr 2009 10:07:42 +0000</pubDate>
		<dc:creator>Sheraz Alvi</dc:creator>
				<category><![CDATA[Basics]]></category>

		<guid isPermaLink="false">http://sharepointskills.co.uk/?p=47</guid>
		<description><![CDATA[The quest for this started in an effort to be more organised and trying to have everything in one place. In my case it was my iPod Touch.
In our office I realised that we are restricted to install iTunes which would have made things pretty easy but continuous search for a solution gave me the [...]]]></description>
			<content:encoded><![CDATA[<p>The quest for this started in an effort to be more organised and trying to have everything in one place. In my case it was my <strong>iPod Touch.</strong></p>
<p>In our office I realised that we are restricted to install iTunes which would have made things pretty easy but continuous search for a solution gave me the exact steps required. I hope someone else will also be able to benefit from this, so here are the steps:</p>
<ol>
<li><strong>First you need to install Google Calendar Sync from here :</strong>
<p><strong></strong><a href="http://www.google.com/support/calendar/bin/answer.py?hl=en&amp;answer=89955(Sorry" target="_blank">http://www.google.com/support/calendar/bin/answer.py?hl=en&amp;answer=89955<em>           <br />(Sorry</em> you might need local admin rights to your machine)</a></p>
<p><em></em><strong>When you install it like me you might get an error for Windows Time Zone not being right and that is where this link comes in</strong> handy: <a href="http://support.microsoft.com/gp/dst_hu1" target="_blank">http://support.microsoft.com/gp/dst_hu1</a></p>
<p><em>(Just install the update on the second step of this link and dont bother going any further.)</em></p>
</li>
<li><em></em><strong>Once you have done that then follow these steps on your iPhone or iPod Touch:To set up Google Sync on your iPhone or iPod Touch device, please follow the steps below:</strong> </li>
<li><strong></strong>Make sure your device has version 2.2 firmware or above. You can check your current version by going to <strong>Settings</strong> &gt; <strong>General</strong> &gt; <strong>About</strong> &gt; <strong>Version</strong>. To upgrade, follow the instructions at <a href="http://www.apple.com/iphone/softwareupdate/">http://www.apple.com/iphone/softwareupdate/</a>.<em> Tip: If you have a Mac, make sure that <strong>Synchronize with Google</strong> in the Address Book app is <strong>OFF</strong>. Otherwise all of your contacts will sync to Address Book.Mail sync is not yet supported. You may receive error messages if you attempt to turn on Sync for Mail. </em></li>
<li><strong>Here is how you can Sync your iPhone and iPod with Google Calendar:</strong>
<p><strong></strong></p>
<p>So its&#160; Outlook &gt; Google Calendar &gt; iPod / iPhone and reverse meaning you add anything to iPod calendar is added to your Outlook too <img src='http://sharepointskills.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
</li>
<li>1. Open the <strong>Settings</strong> application on your device&#8217;s home screen.      <br />2. Open <strong>Mail, Contacts, Calendars</strong>.      <br />3. Tap <strong>Add Account&#8230;</strong>.      <br />4. Select <strong>Microsoft Exchange.</strong>
<p><img alt="" src="http://www.google.com/help/hc/images/mobile_138740a_en.gif" /> <img alt="" src="http://www.google.com/help/hc/images/mobile_138740b_en.gif" /> <img alt="" src="http://www.google.com/help/hc/images/mobile_138740c_en.gif" /></p>
<p>Enter Account Info</p>
<p>5. In the <strong>Email</strong> field, enter the name of the account (anything you&#8217;d like).        <br />6. Leave the <strong>Domain</strong> field blank.        <br />7. Enter your full Google Account email address as the <strong>Username</strong>.        <br />8. Enter your Google Account password as the <strong>Password</strong>.        <br />9. Tap <strong>Next</strong> at the top of your screen.        <br />10. A new <strong>Server</strong> field will appear. Enter <strong>m.google.com</strong>.        <br />11. Press <strong>Next</strong> at the top of your screen again.</p>
<p><img alt="" src="http://www.google.com/help/hc/images/mobile_138740h_en.gif" /> <img alt="" src="http://www.google.com/help/hc/images/mobile_138740d_en.gif" /></p>
<p>12. Select the Google services you want to sync. Currently only <strong>Contacts</strong> and <strong>Calendar</strong> are supported.        <br /><strong>Make sure that you have uploaded your data before proceeding.</strong></p>
<p>13. Press <strong>Sync</strong> twice when warned about data loss.</p>
<p><img alt="" src="http://www.google.com/help/hc/images/mobile_138740e_en.gif" /> <img alt="" src="http://www.google.com/help/hc/images/mobile_138740f_en.gif" /> <img alt="" src="http://www.google.com/help/hc/images/mobile_138740g_en.gif" /></p>
<p>You&#8217;ve set up Google Sync for your iPhone. Synchronization will begin automatically if you have Push enabled on your phone. You can also open the Calendar or Contacts app and wait a few seconds to start a sync.</p>
<p><strong>Tip</strong>: If your business, school, or organization uses Google Apps, your administrator will first need to <a href="http://www.google.com/support/a/bin/answer.py?answer=135937">enable</a> ActiveSync before you can take advantage of this feature.</p>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://sharepointskills.co.uk/?feed=rss2&amp;p=47</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customizing SharePoint Sites using SharePoint Designer 2007</title>
		<link>http://sharepointskills.co.uk/?p=43</link>
		<comments>http://sharepointskills.co.uk/?p=43#comments</comments>
		<pubDate>Fri, 03 Apr 2009 08:47:15 +0000</pubDate>
		<dc:creator>Sheraz Alvi</dc:creator>
				<category><![CDATA[Customization]]></category>

		<guid isPermaLink="false">http://sharepointskills.co.uk/?p=43</guid>
		<description><![CDATA[How to Customize SharePoint sites using SharePoint Designer 2007?]]></description>
			<content:encoded><![CDATA[<p>Sharepoint offers 3 different ways to customise your website:</p>
<p>1. Through the browser using the admin panel but this is limited to some extent</p>
<p>2. <strong>Sharepoint Designer 2007</strong>: Gives to 90% of all the possiblities to customise</p>
<p>3. <strong>Visual Studio 2008</strong>: The most comprehensive though not for beginners or intermediaries, but all the back end development can be done in this enabling you to bring out a completely different and fit to your needs solution.</p>
<p class="MsoNormal">You can do a limited amount of customization through the browser, you can also customize the look and feel by applying a different theme to your site. What you couldn’t do using either methods, was change the layout completely – basically make a SharePoint 2007 site look absolutely not like a SharePoint 2007 site.</p>
<p class="MsoNormal">Now I’ve actually done this at work, but I cannot share the screenshots with you <span style="font-family: Wingdings;">L</span>. What I can share with you are SharePoint tips and tricks in making this happen.</p>
<p class="MsoNormal">Meet your new friend – <strong>The SharePoint Designer 2007.</strong></p>
<p class="MsoNormal"><strong>The SharePoint designer 2007</strong> will let you open a site, and edit it to your heart’s content. But it is important to understand that SharePoint 2007 pages based on a master pages concept. As an ASP.NET 2.0 developer you are probably very familiar with the master page concept, but here is a quick image to explain what a master page does to your site.</p>
<p class="MsoNormal"><img src="http://img137.imageshack.us/img137/6248/image001we6.gif" alt="" width="323" height="242" /></p>
<p class="MsoNormal">Basically, you create a master page where you define common UI and code, and throw in one or more ContentPlaceHolders. ASPX pages can then specify that page as the master page, and optionally choose to override the ContentPlaceHolders placed in the master page. If they choose to override, the content defined in the page will appear, else the content in the master page will appear.</p>
<p class="MsoNormal">Thus you can edit your site, by editing individual pages, or the master page. This is a huge improvement over 2003 since in 2003 all your custom UI changes were scattered all over the map.</p>
<p class="MsoNormal">You can begin editing your site through SharePoint Designer. The easiest way to open a site in SharePoint designer is File <span style="font-family: Wingdings;">à</span> OpenSite <span style="font-family: Wingdings;">à</span> <a href="http://yoursite/">Http://yoursite:someportnumber</a>. It is important to realize that if you have a custom forms based authentication enabled, this will probably fail. That is not such a huge problem as you should be applying consistency between your sites using site templates anyway – this is a topic for a different day.</p>
<p class="MsoNormal">Now, how does page parsing and editing work in SharePoint.</p>
<p class="MsoNormal">When you open the site in SharePoint designer, you would see something like this –</p>
<p class="MsoNormal"><img src="http://img137.imageshack.us/img137/9253/image003ii4.jpg" alt="" width="274" height="261" /></p>
<p class="MsoNormal">The master pages are under the _catalogs/masterpage gallery. You should see a default.master there. You can choose to modify that masterpage, or you could create a new master page. It is very important to realize however that newer objects created on the SharePoint site, such as lists, document libraries, pages or even child sites  and site collections leverage the same master page library. So when you do create a brand new master page, you must right click on that, and set that as your custom master page going forward. Thus, when you create a new list, “Announcements”, SharePoint will ensure that it uses your custom master page for its various aspx pages, rather than the default.master.</p>
<p class="MsoNormal">Alternatively you can choose to modify the default.master.</p>
<p class="MsoNormal">It is nearly impossible to squeeze every bit of knowledge regarding customization in a single blogpost, maybe I’ll write a 2000-4000 word article on that in some magazine in the future.  Heck to describe everything in this topic, you could probably write a couple of chapters in a book, but maybe some other day.</p>
<p class="MsoNormal">But for this blog post, here are a few salient points.</p>
<p class="MsoListParagraphCxSpFirst" style="text-indent: -0.25in;">a)<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"> </span>Don’t knock off any placeholders. Also, don’t knock off any ContentPlaceHolders that are already present in default.master. If you do so, you will find that certain features &amp; objects rely on certain ContentPlaceHolders, and as and when you stumble upon those features &amp; objects, SharePoint will kick and scream (basically throw an error) everytime you use a feature &amp; objects that relies on a specific ContentPlaceHolder that you knocked off. So in short, know and learn the role of each ContentPlaceHolder, and keep them in the page. I couldn’t find a good documented list of ContentPlaceHolders to feature &amp; objects mapping – so I just go by what was already there in default.master. So far it’s worked pretty well for me.</p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent: -0.25in;">b)<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"> </span>You can right click on the design surface of the master page, and see the following menu.<br />
<img src="http://img141.imageshack.us/img141/9366/image005pu0.jpg" alt="" width="293" height="406" />
</p>
<p class="MsoListParagraphCxSpMiddle">Clicking on that menu item will give you a convenient view of managing all existing Content Regions inside the master page (seen below):</p>
<p class="MsoListParagraphCxSpMiddle"><img src="http://img141.imageshack.us/img141/5812/image007jk7.jpg" alt="" width="370" height="306" /></p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent: -0.25in;">c)<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"> </span>Finally, it is important to understand how ASP.NET 2.0’s virtual page parsing works with SharePoint. When you customize either aspx’es or .master files, you are not modifying anything on the file system. All you are doing is, you are making changes in the database. At first hit, SharePoint/ASP.NET combine what is present on the file system, alongwith the delta changes you made, and present a single combined ASPX to the ASP.NET runtime. This then goes through the ASP.NET pipeline like a regular page.</p>
<p class="MsoListParagraphCxSpMiddle">
<p class="MsoListParagraphCxSpMiddle">There are two huge advantages to this, you can not only clearly view the pages that are indeed customized with a little exclamation mark right next to them -</p>
<p><img src="http://img114.imageshack.us/img114/4742/image008oj2.jpg" alt="" width="246" height="294" /></p>
<p>In fact you could even do check-in and check-out of individual files, and you can even revert to a previous version.</p>
<p class="MsoListParagraphCxSpMiddle">Secondly, say in the case of the master pages, they are in a document library under Site Actions <span style="font-family: Wingdings;">à</span> Site Settings/ Galleries/Master pages. And under Document Library Settings, you can specify stuff like versioning settings, custom workflows, and a whole number of things typical to any document library.</p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent: -0.25in;">d)<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"> </span>A very important thing to realize is that only some of the aspx/master pages are fully integrated into this new database oriented ghosting/unghosting scheme. All images, many user controls, and many “admin level” pages are shared amongst all sites, and they simply sit on the file system – not participate in database level ghosting unghosting. (Maybe this will change in RTM? To me it looks like a huge thing left out). Atleast in the beta versions, you can easily get around this issue by going to IIS Manager under Control Panel, and creating new virtual directories for your customized versions, and copy pasting the contents from the original folders into the customized folders.</p>
<p class="MsoListParagraphCxSpMiddle">Yes this sucks, but trust me, don’t ignore this, or all sites on the physical machine will inadvertently end up getting modified – which quite sucks in my opinion. This little advance homework will keep your life sane.</p>
<p class="MsoListParagraphCxSpMiddle">Anyway, to sum it up, customizing SharePoint through SharePoint designer is a huge topic. One thing I didn’t touch upon here was customizing the inbuilt webcontrols that come with SharePoint. For instance, if you wanted to change the look and feel of the “Site Actions” button or menu beyond what CSS and aspx changes allow, you have the option of firing up visual studio and subclassing or creating entirely new controls.</p>
<p class="MsoListParagraphCxSpLast">I’ll probably cover all that and more in some article I will write somewhere in the near future.</p>
]]></content:encoded>
			<wfw:commentRss>http://sharepointskills.co.uk/?feed=rss2&amp;p=43</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PerformancePoint Server joins Microsoft Sharepoint Server 2007</title>
		<link>http://sharepointskills.co.uk/?p=32</link>
		<comments>http://sharepointskills.co.uk/?p=32#comments</comments>
		<pubDate>Tue, 10 Feb 2009 12:12:47 +0000</pubDate>
		<dc:creator>Sheraz Alvi</dc:creator>
				<category><![CDATA[Enhance SharePoint]]></category>

		<guid isPermaLink="false">http://sharepointskills.co.uk/?p=32</guid>
		<description><![CDATA[PerformancePoint Server joins Microsoft Sharepoint Server 2007]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 160px;">
<dt class="wp-caption-dt"><a href="http://www.daylife.com/image/0dq51HB7Kn7M0?utm_source=zemanta&amp;utm_medium=p&amp;utm_content=0dq51HB7Kn7M0&amp;utm_campaign=z1"><img title="NEW YORK - NOVEMBER 30:  (NO SALES, NO ARCHIVE..." src="http://cache.daylife.com/imageserve/0dq51HB7Kn7M0/150x100.jpg" alt="NEW YORK - NOVEMBER 30:  (NO SALES, NO ARCHIVE..." width="150" height="100" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image by <a href="http://www.daylife.com/source/Getty_Images">Getty Images</a> via <a href="http://www.daylife.com">Daylife</a></dd>
</dl>
</div>
</div>
<p style="margin-right: 0px;" dir="ltr" align="left">
<div style="margin-right: 0px;" dir="ltr"><strong></strong></div>
<div style="margin-right: 0px;" dir="ltr"><strong>You can now benefit from a complete business intelligence solution without any further investment in standalone versions of PerformancePoint Server. As Microsoft Sharepoint Server 2007 has been joined in by the PerformancePoint Server 2008.</strong></div>
<div><span style="font-size: x-small; font-family: Verdana;">Microsoft announced that they are moving the scorecard, dashboard, and analytic functionality from PerformancePoint Server into SharePoint Server Enterprise, providing a complete perspective of business performance across enterprise functions such as finance, sales and human resources. These changes enable you to benefit from a complete and integrated business intelligence (BI) solution through your existing investments in SharePoint.</span></div>
<div><span style="font-size: x-small; font-family: Verdana;">The addition of PerformancePoint Server 2007 greatly improves visibility into your company performance and rapidly see what is profitable and what is not. You can use this single integrated application to monitor and analyse the success your company enjoys or the barriers it faces and to plan for the future of your business.</span></div>
<p><span style="font-size: x-small; font-family: Verdana;"><strong>PerformancePoint Server 2007</strong> greatly enhances SharePoint and includes.</span></p>
<ul>
<li><strong>Robust monitoring and analytics capabilities.</strong></li>
</ul>
<blockquote style="margin-right: 0px;" dir="ltr"><p>Scorecards, dashboards, and analytics are all integrated into the same application making deployment simple and helping drive alignment and accountability.</p></blockquote>
<ul>
<li><strong>Improved planning, budgeting, and forecasting.</strong></li>
</ul>
<blockquote style="margin-right: 0px;" dir="ltr"><p>Drive strategic objectives and goals into the planning and budgeting process to ensure departmental plans align with corporate strategy.</p></blockquote>
<ul>
<li><strong>Faster financial reporting and consolidation.</strong></li>
</ul>
<blockquote style="margin-right: 0px;" dir="ltr"><p>Consolidate financial data from multiple general ledgers and reporting systems to achieve a single, integrated view of financial information.</p></blockquote>
<ul>
<li><strong>Accountability from the individual to the enterprise</strong></li>
</ul>
<blockquote style="margin-right: 0px;" dir="ltr"><p>Users can create scorecards, dashboards, and analytics that align with their own responsibilities and goals and with the overall goals and objectives of the organisation. This means that everyone has an up-to-date, consistent view of the data and the most current insight on the entire organisation’s performance.</p></blockquote>
<ul>
<li><strong>Performance management for all business users</strong></li>
</ul>
<blockquote style="margin-right: 0px;" dir="ltr"><p>PerformancePoint Server 2007 was designed to reach everyone involved in your business at all levels of your organisation. Users’ experiences are improved with familiar and easy-to-use interfaces, including Microsoft Office Excel, Outlook, and SharePoint.</p></blockquote>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://arnoldit.com/wordpress/2009/01/26/sharepoint-how-to-code-that-shows-how-not-to-code/">SharePoint How to Code That Shows How Not to code</a> (arnoldit.com)</li>
<li class="zemanta-article-ul-li"><a href="http://r.zemanta.com/?u=http%3A//www.infoworld.com/article/09/01/28/Microsoft_pulls_PerformancePoint_Server_after_just_15_months_1.html&amp;a=2881094&amp;rid=ab4134ef-1a6a-44af-b01f-690564db3695&amp;e=525f215ed3bc405ca92b74f03fd60cdf">Microsoft pulls PerformancePoint Server after just 15 months</a> (infoworld.com)</li>
<li class="zemanta-article-ul-li"><a href="http://blog.searchenginewatch.com/blog/090210-124517">Microsoft Integrates FAST Search with Existing Enterprise Search Offerings</a> (searchenginewatch.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Zemified by Zemanta" href="http://reblog.zemanta.com/zemified/ab4134ef-1a6a-44af-b01f-690564db3695/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=ab4134ef-1a6a-44af-b01f-690564db3695" alt="Reblog this post [with Zemanta]" /></a></div></p>
]]></content:encoded>
			<wfw:commentRss>http://sharepointskills.co.uk/?feed=rss2&amp;p=32</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving Document Libraries from WSS 2.0 to Wss 3.0 MOSS 2007</title>
		<link>http://sharepointskills.co.uk/?p=6</link>
		<comments>http://sharepointskills.co.uk/?p=6#comments</comments>
		<pubDate>Wed, 21 Jan 2009 12:37:18 +0000</pubDate>
		<dc:creator>Sheraz Alvi</dc:creator>
				<category><![CDATA[Migration]]></category>

		<guid isPermaLink="false">http://sharepointskills.co.uk/?p=6</guid>
		<description><![CDATA[Moving Documents from WSS 2.0 to Wss 3.0 MOSS 2007]]></description>
			<content:encoded><![CDATA[<p>The migration has always been an issue with MOSS as dear Microsoft never provided us with a migration tool. Well here is one way of migrating the document libraries. If you dont have the budget and time to go for a third party software this might help you.</p>
<p style="text-align: center;"><img class="alignleft" title="Microsoft Sharepoint 2007" src="http://www.api-software.com/SiteCollectionImages/MicrosoftSharepointImage1.jpg" alt="Microsoft Sharepoint 2007" width="229" height="188" /></p>
<p>If you have the time and money in the pot I would recommend that use METALOGIX from www.metalogix.com. After testing a number of these migration software for MOSS I have concluded that this one is the most easy to use and most comprehensive. Plus they offer great support and are quick to answer your quries unlike many others.</p>
<p>Ok here is the manual migration process:</p>
<p>Backup the databases for the sites you want to upgrade.  Restore these backups as new databases on the SQL server in your WSS 3.0 farm.  Create web applications in WSS 3.0 for the sites that you are going to upgrade.  Remove the databases that are created with these web applications through WSS 3.0 central configuration.  Now attach the WSS 2.0 databases you just restored to SQL using stsadm -o addcontentdb to the web applications you created in WSS 3.0 for the migrated sites.  This is done through the command prompt.  To do this navigate c:program filescommon filesMicrosoft sharedweb server extensions12bin and type this command filling in the appropriate information.</p>
<p>&lt;strong&gt;stsadm.exe -o addcontentdb -url http://&amp;lt;server&amp;gt;:&amp;lt;port&amp;gt; -databasename &amp;lt;WSS v2.0 content database&amp;gt; -databaseserver &amp;lt;DB Server name&amp;gt; &lt;/strong&gt;</p>
<p>for example</p>
<p>&lt;strong&gt;stsadm.exe -o addcontentdb -url http://MyServer:80 -databasename WSS_V2_ContentDB -databaseserver Sample&lt;/strong&gt;</p>
<p>This will do an in place upgrade of the database.</p>
<p>Note:  If you SQL box has instances on it you will need to specify the instance the database is in for example &amp;lt;SQL Server Name&amp;gt;&amp;lt;SQL Instance Name&amp;gt; in the &amp;lt;DB Server name&amp;gt; space above.</p>
]]></content:encoded>
			<wfw:commentRss>http://sharepointskills.co.uk/?feed=rss2&amp;p=6</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Sharepoint Development Experience</title>
		<link>http://sharepointskills.co.uk/?p=12</link>
		<comments>http://sharepointskills.co.uk/?p=12#comments</comments>
		<pubDate>Thu, 15 Jan 2009 20:14:55 +0000</pubDate>
		<dc:creator>Sheraz Alvi</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[MOSS Development]]></category>

		<guid isPermaLink="false">http://sharepointskills.co.uk/?p=3</guid>
		<description><![CDATA[Development infrastructure is where most of the pain associated with Sharepoint development really exists, which is why following this article I’m going to continue with a series describing how you can set up the various parts of your infrastructure to enable friction-free development.]]></description>
			<content:encoded><![CDATA[<p>I want to describe the development process involved in creating a web part for a Sharepoint site, hopefully to dispel the belief that it’s difficult and time-consuming. What I want to demonstrate is that it’s actually very simple &#8211; no more difficult than creating a custom control in ASP.Net 2.0 &#8211; <strong>provided you have set up your development infrastructure correctly</strong>.</p>
<p>Development infrastructure is where most of the pain associated with Sharepoint development really exists, which is why following this article I’m going to continue with a series describing how you can set up the various parts of your infrastructure to enable friction-free development.</p>
<p>This post, however, will show you exactly how friction-free it can be. I’m going to show the steps to build a basic web part and deploy it to your sharepoint solution in a repeatable and reversible way. I’ll also give a tour of how to customise the look-and-feel of a Sharepoint website using the Sharepoint designer. The purpose of this is show to illustrate that developing with Sharepoint isn’t really that much different to developing for a standard ASP.Net 2.0-based website.</p>
<p><strong>Development</strong></p>
<p>Watch me create and deploy a brand new web part to a Sharepoint server:</p>
<p>1. This is my out of the box Publishing Site template<br />
<a href="http://andrewmyhre.files.wordpress.com/2009/01/01.jpg"><img class="size-medium wp-image-164 alignnone" title="01" src="http://andrewmyhre.files.wordpress.com/2009/01/01.jpg?w=300&amp;h=225" alt="01" width="300" height="225" /></a></p>
<p>2. I’m going to add a web part to my site by adding a new class to my visual studio project<br />
<a href="http://andrewmyhre.files.wordpress.com/2009/01/02.jpg"><img class="alignnone size-medium wp-image-165" title="02" src="http://andrewmyhre.files.wordpress.com/2009/01/02.jpg?w=300&amp;h=225" alt="02" width="300" height="225" /></a></p>
<p>3. My class must inherit from Microsoft.SharePoint.WebPartPages.WebPart. I’m going to override the Render method to make the web part output some text. Note how similar this is to an ASP.Net custom control.<br />
<a href="http://andrewmyhre.files.wordpress.com/2009/01/03.jpg"><img class="alignnone size-medium wp-image-166" title="03" src="http://andrewmyhre.files.wordpress.com/2009/01/03.jpg?w=300&amp;h=225" alt="03" width="300" height="225" /></a></p>
<p>4.  I build the project. A post-build step creates a CAB file which can be deployed to Sharepoint. This packages up my new features/webparts so that I can manage their usage within Sharepoint and easily repeat/reverse this deployment process.<br />
<a href="http://andrewmyhre.files.wordpress.com/2009/01/04.jpg"><img class="alignnone size-medium wp-image-167" title="04" src="http://andrewmyhre.files.wordpress.com/2009/01/04.jpg?w=300&amp;h=225" alt="04" width="300" height="225" /></a></p>
<p>5.  I run a script to deploy the CAB file to Sharepoint.<br />
<a href="http://andrewmyhre.files.wordpress.com/2009/01/05.jpg"><img class="alignnone size-medium wp-image-168" title="05" src="http://andrewmyhre.files.wordpress.com/2009/01/05.jpg?w=300&amp;h=225" alt="05" width="300" height="225" /></a></p>
<p>6. In Sharepoint I add the Web Part to a page. If I haven’t deployed this web part before I need to Import the web part from the Site Settings menu first.<br />
<a href="http://andrewmyhre.files.wordpress.com/2009/01/06.jpg"><img class="alignnone size-medium wp-image-169" title="06" src="http://andrewmyhre.files.wordpress.com/2009/01/06.jpg?w=300&amp;h=225" alt="06" width="300" height="225" /></a></p>
<p>7. And there it is!<br />
<a href="http://andrewmyhre.files.wordpress.com/2009/01/07.jpg"><img class="alignnone size-medium wp-image-170" title="07" src="http://andrewmyhre.files.wordpress.com/2009/01/07.jpg?w=300&amp;h=225" alt="07" width="300" height="225" /></a></p>
<p>This development process is so simple and repeatable, it’s just like a standard ASP.Net website. What’s more when I set up source-control for my visual studio solution I can set up a continuous integration environment to automatically deploy my changes for me.</p>
<p><strong>Layouts</strong></p>
<p>Now I’m going to change the layout for this page. Most developers seem to believe this is an almost impossible task, or at least much more painful than editing a regular ASP.Net 2.0 Web Forms page. Well, watch:</p>
<p>1. My page layout<br />
<a href="http://andrewmyhre.files.wordpress.com/2009/01/08.jpg"><img class="alignnone size-medium wp-image-171" title="08" src="http://andrewmyhre.files.wordpress.com/2009/01/08.jpg?w=300&amp;h=225" alt="08" width="300" height="225" /></a></p>
<p>2. I open up Sharepoint Designer and browse to the page I want to edit and double click. Sharepoint Designer asks me if I want to edit the <em>content</em> for the page or the <em>layout</em> for the page. I select layout. Here’s what I see:</p>
<p><a href="http://andrewmyhre.files.wordpress.com/2009/01/09.jpg"><img class="alignnone size-medium wp-image-172" title="09" src="http://andrewmyhre.files.wordpress.com/2009/01/09.jpg?w=300&amp;h=225" alt="09" width="300" height="225" /></a></p>
<p>There are a lot of controls on the page. Most of them have the prefix SharePointWebControls, so we can pretty easily see what they’re doing and we don’t have to be afraid. Otherwise this is just like a standard ASP.Net Web Forms page &#8211; it has stuff inside ContentPlaceHolder controls. Sharepoint assigns this page layout a master page at runtime.</p>
<p>3. See those ugly tables in the PlaceHolderMain ContentPlaceholderControl? I’m going to change those to divs:</p>
<p><a href="http://andrewmyhre.files.wordpress.com/2009/01/10.jpg"><img class="alignnone size-medium wp-image-173" title="10" src="http://andrewmyhre.files.wordpress.com/2009/01/10.jpg?w=300&amp;h=225" alt="10" width="300" height="225" /></a></p>
<p>4. And now I’m going to edit the master page for this page layout. I know that the master page I want to edit happens to be BlueBand.master, because I chose it within the SharePoint Site Settings menu. And I also know that all master pages can be found in /catalog/masterpage in SharePoint Designer. I’ll change the tables there to divs too.<br />
<a href="http://andrewmyhre.files.wordpress.com/2009/01/12.jpg"><img class="alignnone size-medium wp-image-175" title="12" src="http://andrewmyhre.files.wordpress.com/2009/01/12.jpg?w=300&amp;h=225" alt="12" width="300" height="225" /></a></p>
<p>5. I check-in the changes to these files (SharePoint automatically provides versioning on these files because they’re actually in the SharePoint database &#8211; more on that in another post) and reload my site homepage:<br />
<a href="http://andrewmyhre.files.wordpress.com/2009/01/13.jpg"><img class="alignnone size-medium wp-image-176" title="13" src="http://andrewmyhre.files.wordpress.com/2009/01/13.jpg?w=300&amp;h=225" alt="13" width="300" height="225" /></a></p>
<p>Not such a visually impressive example, I know, but I just wanted to demonstrate that editing a SharePoint website isn’t really that different to building an ASP.Net website, and it’s no more difficult.</p>
<p>In future posts I’m going to walk through how to set up the infrastructure to be able to enjoy the development experience I demonstrated in the first section, and I also hope to demonstrate some ways to make layout editing more enjoyable, like by removing as much of the .Net cruft as possible and make your pages generate something more like semantic markup.</p>
<p>Source: http://andrewmyhre.wordpress.com ~(thanks)</p>
]]></content:encoded>
			<wfw:commentRss>http://sharepointskills.co.uk/?feed=rss2&amp;p=12</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Google Gadgets to your Sharepoint site</title>
		<link>http://sharepointskills.co.uk/?p=10</link>
		<comments>http://sharepointskills.co.uk/?p=10#comments</comments>
		<pubDate>Sun, 21 Dec 2008 12:39:39 +0000</pubDate>
		<dc:creator>Sheraz Alvi</dc:creator>
				<category><![CDATA[Enhance SharePoint]]></category>

		<guid isPermaLink="false">http://sharepointskills.co.uk/?p=10</guid>
		<description><![CDATA[Google has hundreds of gadgets that you can be added to any web page. Many of these can be integrated into SharePoint using the Content Editor Web Part or the XML Web Part. Many of the Gadgets can allow users to access information from the web without leaving the comfort of your intranet page.]]></description>
			<content:encoded><![CDATA[<p><strong>&#8220;How do to get users to buy in to SharePoint and start using it?&#8221; </strong></p>
<p>Getting users to switch to using any new application can be tough. To get your user&#8217;s to visit your portal, there has to be content there that the user needs or wants. I recommend starting with content that everyone in the organization can use. Begin migrating the functional areas that all employees interact with, for example Human Resources and Company Wide Calendars.</p>
<p>This type of content engages the user and will keep them coming to the site as you continue to add more business related content. One quick and easy way to add user catching content is to use <a href="http://www.google.com/webmasters/gadgets/foryourpage/index.html">Google Gadgets</a>. Not only can Google Gadgets can help you attract users to your site, they can also keep users from navigating away from the intranet into the World Wide Web.</p>
<p>Google has hundreds of gadgets that you can be added to any web page. Many of these can be integrated into SharePoint using the Content Editor Web Part or the XML Web Part. Many of the Gadgets can allow users to access information from the web without leaving the comfort of your intranet page.</p>
<p>The example below shows how to use the Content Editor Web Part to add a weather gadget to a page.</p>
<ol>
<li>
<div>Browse and find a Google Gadget for your page. Enter the settings for the Gadget. Click the <strong>Get the Code</strong> button. Copy the code in the box</div>
<p><img src="ftp://216.215.157.244/blogimages/060408_0015_UsingGoogle1.png" alt="" /></li>
<li>Add a Content Editor Web Part to your homepage and modify the web part. <img class="alignnone" src="ftp://216.215.157.244/blogimages/060408_0015_UsingGoogle2.png" alt="" width="162" height="249" /></li>
<li>Click on the <strong>Source Editor</strong> and paste the code from the Google Gadget into the box. <img src="ftp://216.215.157.244/blogimages/060408_0015_UsingGoogle3.png" alt="" /></li>
<li>Save the Changes to the web part. When you reload the page the weather gadget will appear on your page.</li>
</ol>
<p><img src="ftp://216.215.157.244/blogimages/060408_0015_UsingGoogle4.png" alt="" /></p>
<p>Google Gadgets can be an easy way to add external content to your SharePoint site. Be wary and selective when choosing your Gadgets. Not all Google Gadgets are appropriate for use on company portals and using too many gadgets can clutter and make your site less user friendly. Remember the goal is to add content that the users want or need. Some of the Google Gadgets that I think could be useful in a SharePoint environment are the weather gadget, the Count Down gadget (This could be used to countdown to a company event or deadline.), and Google Mini Web gadget.</p>
<p>Happy Gadgeting!</p>
]]></content:encoded>
			<wfw:commentRss>http://sharepointskills.co.uk/?feed=rss2&amp;p=10</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

