<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-US"><title type="html">Morten Schioldan</title><subtitle type="html">...who needs folders?</subtitle><id>http://blogs.msdn.com/b/mortens/atom.aspx</id><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mortens/" /><link rel="self" type="application/atom+xml" href="http://blogs.msdn.com/b/mortens/atom.aspx" /><generator uri="http://telligent.com" version="5.6.583.19431">Telligent Community 5.6.583.19431 (Build: 5.6.583.19431)</generator><updated>2008-02-19T12:12:00Z</updated><entry><title>gazillion spelling errors on blank sharepoint publishing pages</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mortens/archive/2011/12/09/gazillion-spelling-errors-on-blank-pages.aspx" /><id>http://blogs.msdn.com/b/mortens/archive/2011/12/09/gazillion-spelling-errors-on-blank-pages.aspx</id><published>2011-12-09T19:54:00Z</published><updated>2011-12-09T19:54:00Z</updated><content type="html">&lt;p&gt;Some publishing page layouts show a gazillion spell check error on just blank pages. After some research it turns out that the User Contact field control will cause a large number of spell check errors just by been on the page.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Workaround is to add a piece of javascript to the page in order to tell the spellchecker to ignore the user contact control.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;1. first add a &amp;lt;div id="'excludeContentFromSpellCheck'"&amp;gt; tag around the user contact control&lt;/p&gt;
&lt;p&gt;&amp;nbsp;2. then add the&amp;nbsp;following&amp;nbsp;javascript&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var a = document.getElementById('excludeContentFromSpellCheck');&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var b = a.getElementsByTagName('input');&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (var i = 0; i &amp;lt; b.length; i++)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; b[i].setAttribute("excludeFromSpellCheck", "true");&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var c= a.getElementsByTagName('textarea');&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (var i = 0; i &amp;lt; c.length; i++)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; c[i].setAttribute("excludeFromSpellCheck", "true");&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10246177" width="1" height="1"&gt;</content><author><name>mortens</name><uri>http://blogs.msdn.com/mortens/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Access Denied trying to uninstall assemblies from GAC</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mortens/archive/2010/11/09/access-denied-uninstalling-assemblies-from-gac.aspx" /><id>http://blogs.msdn.com/b/mortens/archive/2010/11/09/access-denied-uninstalling-assemblies-from-gac.aspx</id><published>2010-11-09T13:12:00Z</published><updated>2010-11-09T13:12:00Z</updated><content type="html">&lt;p&gt;On a SharePoint 2010 development server running Windows Server 2008 R2, I had to uninstall some assemblies in the GAC and I kept getting access denied, when trying to delete them. This was the case both using gacutil.exe and the Windows Explorer when running in Administrative mode.&lt;/p&gt;
&lt;p&gt;So, looking for at a way to do this, I had to change a Local Security Policy, in order to allow them to be deleted:&lt;/p&gt;
&lt;p&gt;* Open Local Security Policy MMC&lt;/p&gt;
&lt;p&gt;* Goto Security Settings -&amp;gt; Local Policies -&amp;gt; Security Options&lt;/p&gt;
&lt;p&gt;* Locate "User Account Control: Run all administrators in Admin Approval" and change the setting from Enabled to Disabled&lt;/p&gt;
&lt;p&gt;* Reboot and now the assemblies can be deleted&lt;/p&gt;
&lt;p&gt;IMPORTANT! Never ever do this on a production system, and always turn it back on afterwards.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10088137" width="1" height="1"&gt;</content><author><name>mortens</name><uri>http://blogs.msdn.com/mortens/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Upgrading custom content types to 2010</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mortens/archive/2010/10/29/upgrading-custom-content-types-to-2010.aspx" /><id>http://blogs.msdn.com/b/mortens/archive/2010/10/29/upgrading-custom-content-types-to-2010.aspx</id><published>2010-10-29T07:19:29Z</published><updated>2010-10-29T07:19:29Z</updated><content type="html">&lt;p&gt;A key learning for everyone trying to upgrade 2007 custom solutions to SharePoint 2010. &lt;/p&gt;
&lt;p&gt;If you have custom content types which inherit form the Page publishing content type (or any publishing content type), you will be able to upgrade your sites and create subsites - BUT you will not be able to create new site collections, or activate your custom content type feature on a standard publishing site, UNLESS you have the &lt;span style="line-height: 115%; font-family: 'Courier New'; color: red; font-size: 10pt; mso-fareast-font-family: '@Arial Unicode MS'; mso-ansi-language: DA; mso-fareast-language: ZH-TW; mso-bidi-language: AR-SA;"&gt;Inherits&lt;/span&gt;&lt;span style="line-height: 115%; font-family: 'Courier New'; color: blue; font-size: 10pt; mso-fareast-font-family: '@Arial Unicode MS'; mso-ansi-language: DA; mso-fareast-language: ZH-TW; mso-bidi-language: AR-SA;"&gt;=&lt;/span&gt;&lt;span style="line-height: 115%; font-family: 'Courier New'; font-size: 10pt; mso-fareast-font-family: '@Arial Unicode MS'; mso-ansi-language: DA; mso-fareast-language: ZH-TW; mso-bidi-language: AR-SA;"&gt;"&lt;span style="color: blue;"&gt;TRUE&lt;/span&gt;" &lt;span style="font-family: arial,helvetica,sans-serif;"&gt;added to the ContentType element.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="line-height: 115%; font-family: 'Courier New'; font-size: 10pt; mso-fareast-font-family: '@Arial Unicode MS'; mso-ansi-language: DA; mso-fareast-language: ZH-TW; mso-bidi-language: AR-SA;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;It seems not be a hard requirement for non-publishing content types.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="line-height: 115%; font-family: 'Courier New'; font-size: 10pt; mso-fareast-font-family: '@Arial Unicode MS'; mso-ansi-language: DA; mso-fareast-language: ZH-TW; mso-bidi-language: AR-SA;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;Bottomline is that the &lt;span style="line-height: 115%; font-family: 'Courier New'; color: red; font-size: 10pt; mso-fareast-font-family: '@Arial Unicode MS'; mso-ansi-language: DA; mso-fareast-language: ZH-TW; mso-bidi-language: AR-SA;"&gt;Inherits&lt;/span&gt;&lt;span style="line-height: 115%; font-family: 'Courier New'; color: blue; font-size: 10pt; mso-fareast-font-family: '@Arial Unicode MS'; mso-ansi-language: DA; mso-fareast-language: ZH-TW; mso-bidi-language: AR-SA;"&gt;=&lt;/span&gt;&lt;span style="line-height: 115%; font-family: 'Courier New'; font-size: 10pt; mso-fareast-font-family: '@Arial Unicode MS'; mso-ansi-language: DA; mso-fareast-language: ZH-TW; mso-bidi-language: AR-SA;"&gt;"&lt;span style="color: blue;"&gt;TRUE&lt;/span&gt;" &lt;/span&gt;attribute is new to SharePoint 2010, and when using inheritance you must make sure always to include this for new custom content types.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="line-height: 115%; font-family: 'Courier New'; font-size: 10pt; mso-fareast-font-family: '@Arial Unicode MS'; mso-ansi-language: DA; mso-fareast-language: ZH-TW; mso-bidi-language: AR-SA;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10082700" width="1" height="1"&gt;</content><author><name>mortens</name><uri>http://blogs.msdn.com/mortens/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>SharePoint 2010 Logical architecture planning</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mortens/archive/2010/07/29/sharepoint-2010-logical-architecture-planning.aspx" /><id>http://blogs.msdn.com/b/mortens/archive/2010/07/29/sharepoint-2010-logical-architecture-planning.aspx</id><published>2010-07-29T08:08:00Z</published><updated>2010-07-29T08:08:00Z</updated><content type="html">&lt;p&gt;My favorite piece of TechNet documentation just got updated for SharePoint 2010.&lt;/p&gt;
&lt;p&gt;Check out the documentation and download the Visio diagrams:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://technet.microsoft.com/da-dk/library/ff829836(en-us).aspx" title="Logical architecture planning"&gt;http://technet.microsoft.com/da-dk/library/ff829836(en-us).aspx&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkId=196872"&gt;http://go.microsoft.com/fwlink/?LinkId=196872&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10043731" width="1" height="1"&gt;</content><author><name>mortens</name><uri>http://blogs.msdn.com/mortens/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Configuring incoming and outgoing e-mail</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mortens/archive/2010/06/15/configuring-incoming-and-outgoing-e-mail.aspx" /><id>http://blogs.msdn.com/b/mortens/archive/2010/06/15/configuring-incoming-and-outgoing-e-mail.aspx</id><published>2010-06-15T20:56:32Z</published><updated>2010-06-15T20:56:32Z</updated><content type="html">&lt;p&gt;I was testing out a few things in a lab with Exchange 2010 and SharePoint 2010, and I naturally wanted to configure incoming and outgoing mail.&lt;/p&gt;
&lt;p&gt;The safe place to look is of couse there: &lt;a href="http://technet.microsoft.com/en-us/library/ee956940.aspx"&gt;E-mail Integration for SharePoint Foundation 2010&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;But being really Exchange-stupid, I needed some help and I found theses two guides below, which especially had nice screenshots of the Exchange 2010 pieces of the puzzle:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://sharepointgeorge.com/2010/configuring-incoming-email-sharepoint-2010/"&gt;http://sharepointgeorge.com/2010/configuring-incoming-email-sharepoint-2010/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://sharepointgeorge.com/2010/configuring-outgoing-email-sharepoint-2010/"&gt;http://sharepointgeorge.com/2010/configuring-outgoing-email-sharepoint-2010/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now, of course I had some problems anyway -- some because I was trying to do it too fast and missing some steps, but also a few weird things, I want to share:&lt;/p&gt;
&lt;p&gt;* Most importantly, the timer service did not pick up the incoming eml messages in the SMTP drop folder - they were just sitting there. I had Incoming Email configured to "Automatic", which means it should pick up the drop folder location from the SMTP service. But for some reason, it couldn't contact the service. So, I ended up changing it to "Advanced" and entering the folder location of the drop folder, and then it worked.&lt;/p&gt;
&lt;p&gt;* Also, I enabed the directory services in order to get the email contact created automatically. It created the contact fine, but it only added an external address for the contact - which meant it wasn't directly available in outlook contacts. So, when I added an internal SMTP address (same email address of course) then it worked. Again being at exchange 100-level, I didn't have a clue - but it worked and I got my things tested - which was want I wanted in the lab....&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10025388" width="1" height="1"&gt;</content><author><name>mortens</name><uri>http://blogs.msdn.com/mortens/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>SharePoint 2010 RTM - "Trail period has expired" error</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mortens/archive/2010/06/15/sharepoint-2010-rtm-quot-trail-period-has-expired-quot-error.aspx" /><id>http://blogs.msdn.com/b/mortens/archive/2010/06/15/sharepoint-2010-rtm-quot-trail-period-has-expired-quot-error.aspx</id><published>2010-06-15T09:15:58Z</published><updated>2010-06-15T09:15:58Z</updated><content type="html">&lt;p&gt;So, I was building 4 server medium-ish farm on Friday, and everything when fine until i spun up the first site collection just to test the Office Web Apps install -- and then it failed; "Trail Period has expired" - hmm. &lt;/p&gt;
&lt;p&gt;RTM software - check&lt;/p&gt;
&lt;p&gt;Right product key - check.&lt;/p&gt;
&lt;p&gt;Very wierd - so, I found&lt;a href="http://binoeder.wordpress.com/2010/05/23/trial-period-has-expired/"&gt; this post&lt;/a&gt; of a similar problem, and sure thing it worked. Adding more rights for the app pool account did the trick.&lt;/p&gt;
&lt;p&gt;I want to investivate this a bit more, so I'll update, if I find a solution without giving more access rights.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10025075" width="1" height="1"&gt;</content><author><name>mortens</name><uri>http://blogs.msdn.com/mortens/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Planning and deployment downloadable books for SharePoint 2010 are now available</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mortens/archive/2010/04/27/planning-and-deployment-downloadable-books-for-sharepoint-2010-are-now-available.aspx" /><id>http://blogs.msdn.com/b/mortens/archive/2010/04/27/planning-and-deployment-downloadable-books-for-sharepoint-2010-are-now-available.aspx</id><published>2010-04-27T16:42:00Z</published><updated>2010-04-27T16:42:00Z</updated><content type="html">&lt;P&gt;Beta versions of the planning and deployment downloadable books for SharePoint 2010 are now available on TechNet.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="http://go.microsoft.com/fwlink/?LinkId=189513" mce_href="http://go.microsoft.com/fwlink/?LinkId=189513"&gt;Downloadable book: Planning guide for SharePoint Server 2010 Beta&lt;/A&gt;&amp;nbsp; (&lt;A href="http://go.microsoft.com/fwlink/?LinkId=189513"&gt;http://go.microsoft.com/fwlink/?LinkId=189513&lt;/A&gt;)&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://go.microsoft.com/fwlink/?LinkId=189303" mce_href="http://go.microsoft.com/fwlink/?LinkId=189303"&gt;Downloadable book: Deployment guide for SharePoint Server 2010 Beta&lt;/A&gt; (&lt;A href="http://go.microsoft.com/fwlink/?LinkId=189303"&gt;http://go.microsoft.com/fwlink/?LinkId=189303&lt;/A&gt;)&lt;BR&gt;&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10003300" width="1" height="1"&gt;</content><author><name>mortens</name><uri>http://blogs.msdn.com/mortens/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>SharePoint 2010 RTM</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mortens/archive/2010/04/20/sharepoint-2010-rtm.aspx" /><id>http://blogs.msdn.com/b/mortens/archive/2010/04/20/sharepoint-2010-rtm.aspx</id><published>2010-04-20T14:44:00Z</published><updated>2010-04-20T14:44:00Z</updated><content type="html">&lt;P&gt;Very cool --- &lt;A href="http://blogs.msdn.com/sharepoint/archive/2010/04/16/sharepoint-2010-reaches-rtm.aspx" mce_href="http://blogs.msdn.com/sharepoint/archive/2010/04/16/sharepoint-2010-reaches-rtm.aspx"&gt;http://blogs.msdn.com/sharepoint/archive/2010/04/16/sharepoint-2010-reaches-rtm.aspx&lt;/A&gt;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9999196" width="1" height="1"&gt;</content><author><name>mortens</name><uri>http://blogs.msdn.com/mortens/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>End of support for MOSS 2007 SP1</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mortens/archive/2010/04/14/end-of-support-for-moss-2007-sp1.aspx" /><id>http://blogs.msdn.com/b/mortens/archive/2010/04/14/end-of-support-for-moss-2007-sp1.aspx</id><published>2010-04-14T07:16:00Z</published><updated>2010-04-14T07:16:00Z</updated><content type="html">&lt;P&gt;There are a few different dates out there and it's highly confusing to figure out a straight answer ... But it's worth noting that the &lt;A href="http://support.microsoft.com/lifecycle/#ServicePackSupport" mce_href="http://support.microsoft.com/lifecycle/#ServicePackSupport"&gt;normal support policy for service packs &lt;/A&gt;has been extented with a grace periode of approx. 3 months, which makes the end of support date for&amp;nbsp;&lt;A href="http://support.microsoft.com/lifecycle/?p1=12200" mce_href="http://support.microsoft.com/lifecycle/?p1=12200"&gt;MOSS 2007 SP1 July 13th 2010.&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;I guess the calculation is that the normal support has been extented&amp;nbsp;until the 2nd Tuesday following the first CU after SP2 (and with all stars aligned....)&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9995646" width="1" height="1"&gt;</content><author><name>mortens</name><uri>http://blogs.msdn.com/mortens/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Building high quality WCM sites  - part 1</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mortens/archive/2009/12/19/building-high-quality-wcm-sites-part-1.aspx" /><id>http://blogs.msdn.com/b/mortens/archive/2009/12/19/building-high-quality-wcm-sites-part-1.aspx</id><published>2009-12-19T20:27:00Z</published><updated>2009-12-19T20:27:00Z</updated><content type="html">&lt;P&gt;I've helped build a few WCM sites the part couple of years, and for each project learned more about what it takes to a) be predictive, b) be interactive and lastly c) produce high quality sites. To me those three are the key things to focus on build WCM sites (or any SharePoint solution for that matter, but it's especially true for WCM sites). And not supprisingly - its not the technical tasks and skills that prove difficult -- often times its more about the process and meeting the right expectations.&lt;/P&gt;
&lt;P&gt;I&amp;nbsp;thought that I would spend some time in a small series to post about findings, experiences and also share some of the tooling that help support build high quality sites.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Be Predictive &lt;/STRONG&gt;-- So this is very most a process thing. Build the vision and scope based on requirements, and&amp;nbsp;take the time to do A PROPER Logical Design and Information Architecture analysis.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Be interactive &lt;/STRONG&gt;-- NEVER do waterfall projects on SharePoint. It is so much more valuable to iterate and have interaction on smaller releases. SharePoint customization is a great fit for this.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Produce high quality &lt;/STRONG&gt;--&amp;nbsp;Do not underestimate the value of investing in proper release and build management in a SharePoint project. For any larger project&amp;nbsp;it will be a lifesaver in the end. Releasing&amp;nbsp;and building WCM artifacts in a larger&amp;nbsp;team of developers and UX&amp;nbsp;designers can be a challenging task, and&amp;nbsp;form my experience, it cannot be done without incorporating and build test content.&lt;/P&gt;
&lt;P&gt;Look out for the next posts where I'll dive into each of these...&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9939177" width="1" height="1"&gt;</content><author><name>mortens</name><uri>http://blogs.msdn.com/mortens/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Microsoft Certified Master - SharePoint 2007</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mortens/archive/2009/12/05/microsoft-certified-master-sharepoint-2007.aspx" /><id>http://blogs.msdn.com/b/mortens/archive/2009/12/05/microsoft-certified-master-sharepoint-2007.aspx</id><published>2009-12-05T04:55:00Z</published><updated>2009-12-05T04:55:00Z</updated><content type="html">&lt;P&gt;I just got news that I've officially qualified as a &lt;A href="http://www.microsoft.com/learning/mcp/master" mce_href="http://www.microsoft.com/learning/mcp/master"&gt;SharePoint 2007&amp;nbsp;MCM&lt;/A&gt;. What a great early Christmas present!&lt;/P&gt;
&lt;P&gt;I can only recommond this&amp;nbsp;experience to everyone out there doing SharePoint stuff. It has been one of the best learning experiences that I've encountered.&lt;/P&gt;
&lt;P&gt;It's an incredible eye-opener, and still&amp;nbsp;after two weeks the depth and breath of the&amp;nbsp;content is still trying to sink in.....&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9932895" width="1" height="1"&gt;</content><author><name>mortens</name><uri>http://blogs.msdn.com/mortens/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Back home</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mortens/archive/2009/11/24/back-home.aspx" /><id>http://blogs.msdn.com/b/mortens/archive/2009/11/24/back-home.aspx</id><published>2009-11-24T00:57:00Z</published><updated>2009-11-24T00:57:00Z</updated><content type="html">&lt;P&gt;I managed to survive the 3 weeks of SharePoint MCM training, and I just arrived back home yesterday from Redmond. I'm now up at 2am with a major jet lag - great -&lt;/P&gt;
&lt;P&gt;Anyway, it was a great training and it's highly recommended --&amp;nbsp;Cool content and really awesome people!&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9927652" width="1" height="1"&gt;</content><author><name>mortens</name><uri>http://blogs.msdn.com/mortens/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Getting ready to leave for SharePoint MCM...</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mortens/archive/2009/10/28/getting-ready-to-leave-for-sharepoint-mcm.aspx" /><id>http://blogs.msdn.com/b/mortens/archive/2009/10/28/getting-ready-to-leave-for-sharepoint-mcm.aspx</id><published>2009-10-28T07:58:00Z</published><updated>2009-10-28T07:58:00Z</updated><content type="html">&lt;P&gt;I'm getting ready to leave for 3 weeks of intensive SharePoint training in Redmond participating in rotation 4 of the&amp;nbsp;&lt;A href="http://www.microsoft.com/learning/en/us/certification/master.aspx" mce_href="http://www.microsoft.com/learning/en/us/certification/master.aspx"&gt;SharePoint Microsoft Certified Master program&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Reading through the &lt;A href="http://blogs.technet.com/themasterblog/archive/2009/04/29/introducing-the-sharepoint-mcm-program-and-the-first-microsoft-certified-sharepoint-masters.aspx" mce_href="http://blogs.technet.com/themasterblog/archive/2009/04/29/introducing-the-sharepoint-mcm-program-and-the-first-microsoft-certified-sharepoint-masters.aspx"&gt;posts&lt;/A&gt; from previous participants it sounds like an awesome experience.&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9913957" width="1" height="1"&gt;</content><author><name>mortens</name><uri>http://blogs.msdn.com/mortens/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>SQL Server 2008 Mirroring and "Restoring..." database state</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mortens/archive/2009/10/20/sql-server-2008-mirroring-and-restoring-database-state.aspx" /><id>http://blogs.msdn.com/b/mortens/archive/2009/10/20/sql-server-2008-mirroring-and-restoring-database-state.aspx</id><published>2009-10-20T15:29:00Z</published><updated>2009-10-20T15:29:00Z</updated><content type="html">&lt;P&gt;In SQL Server 2008 -- after you have restored your SQL Server databases to the mirror server and setup the connection between the principal and mirror instances, then you will discover that the database will stay in a "Restoring..." state.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;In SQL Server 2005 it said &lt;STRONG&gt;&lt;EM&gt;DatabaseName&lt;/EM&gt; (Mirror, Synchronized / Restoring...)&lt;/STRONG&gt;, but this behaviour has changed for the 2008 version, where it show says: &lt;STRONG&gt;&lt;EM&gt;DatabaseName&lt;/EM&gt; (Restoring...)&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;This is not a configuration error and the mirroring is configured correctly (as you can se if you right click on the database, select Tasks and Mirror...).&lt;/P&gt;
&lt;P&gt;Have a look here for more info:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.microsoft.com/kb/956005"&gt;http://support.microsoft.com/kb/956005&lt;/A&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9909976" width="1" height="1"&gt;</content><author><name>mortens</name><uri>http://blogs.msdn.com/mortens/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>401 error when configuring sharepoint with kerberos on IIS7</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mortens/archive/2009/10/20/401-error-when-configuring-sharepoint-with-kerberos-on-iis7.aspx" /><id>http://blogs.msdn.com/b/mortens/archive/2009/10/20/401-error-when-configuring-sharepoint-with-kerberos-on-iis7.aspx</id><published>2009-10-20T12:27:00Z</published><updated>2009-10-20T12:27:00Z</updated><content type="html">&lt;P&gt;When you first configure kerberos authentication on IIS7 you will very likely experience 401 authentication errors when you try to access the site.&lt;/P&gt;
&lt;P&gt;To workaround this problem, change the authentication to have kernel-mode authentication turned off.&lt;/P&gt;
&lt;P&gt;On each front-end open IIS Manager, click the web site. Open the "Authentication" feature and select Windows Authentication. Then click advanced settings in the Actions pane. Remove the "Enable Kernel-mode authentication" checkmark and click OK.&lt;/P&gt;
&lt;P&gt;This was tested on Windows Server 2008 R2, MOSS 2007 SP2 running a five-server baseline setup.&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9909846" width="1" height="1"&gt;</content><author><name>mortens</name><uri>http://blogs.msdn.com/mortens/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Installing SharePoint on Windows Server 2008 R2</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mortens/archive/2009/10/07/installing-sharepoint-on-windows-server-2008-r2.aspx" /><id>http://blogs.msdn.com/b/mortens/archive/2009/10/07/installing-sharepoint-on-windows-server-2008-r2.aspx</id><published>2009-10-07T21:12:00Z</published><updated>2009-10-07T21:12:00Z</updated><content type="html">&lt;P&gt;You will need to slipstream the install with SP2. Have a look at this post from&amp;nbsp;Jie Li:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/opal/archive/2009/05/08/install-moss-2007-wss-3-0-on-windows-server-2008-r2-you-will-need-sp2-slipstream.aspx"&gt;http://blogs.msdn.com/opal/archive/2009/05/08/install-moss-2007-wss-3-0-on-windows-server-2008-r2-you-will-need-sp2-slipstream.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9904500" width="1" height="1"&gt;</content><author><name>mortens</name><uri>http://blogs.msdn.com/mortens/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Setting up NLB in Windows Server Hyper-V</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mortens/archive/2009/10/07/setting-up-nlb-in-windows-server-hyper-v.aspx" /><id>http://blogs.msdn.com/b/mortens/archive/2009/10/07/setting-up-nlb-in-windows-server-hyper-v.aspx</id><published>2009-10-07T21:05:00Z</published><updated>2009-10-07T21:05:00Z</updated><content type="html">&lt;P&gt;I was setting up Microsoft NLB in a couple of Windows Server 2008 Hyper-V images... and since infrastructure in general is one of my weaker sides, I was looking for help. &lt;/P&gt;
&lt;P&gt;&amp;nbsp;I came across a couple of articles which helped me:&lt;/P&gt;
&lt;P&gt;* A Guide which is very easy to follow: &lt;A href="http://www.jppinto.com/index.php/2009/05/install-and-configure-wlbs-nlb-on-windows-server-2008/"&gt;http://www.jppinto.com/index.php/2009/05/install-and-configure-wlbs-nlb-on-windows-server-2008/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;* Support article on how to configure MAC address: &lt;A href="http://support.microsoft.com/default.aspx/kb/953828"&gt;http://support.microsoft.com/default.aspx/kb/953828&lt;/A&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9904499" width="1" height="1"&gt;</content><author><name>mortens</name><uri>http://blogs.msdn.com/mortens/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Exporting publishing sub-sites to new site collections</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mortens/archive/2009/06/24/exporting-publishing-sub-sites-to-new-site-collections.aspx" /><id>http://blogs.msdn.com/b/mortens/archive/2009/06/24/exporting-publishing-sub-sites-to-new-site-collections.aspx</id><published>2009-06-24T17:27:00Z</published><updated>2009-06-24T17:27:00Z</updated><content type="html">&lt;P&gt;As usual Stefan writes great posts - this one is about supported export/import scenarios using stsadm.&lt;/P&gt;
&lt;P&gt;It an absolute must read if your doing MOSS publishing portals.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/stefan_gossner/archive/2009/05/27/limitations-of-stsadm-o-export-import-related-to-publishing-sites.aspx"&gt;http://blogs.technet.com/stefan_gossner/archive/2009/05/27/limitations-of-stsadm-o-export-import-related-to-publishing-sites.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9801582" width="1" height="1"&gt;</content><author><name>mortens</name><uri>http://blogs.msdn.com/mortens/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Great tip when creating page layouts</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mortens/archive/2009/06/04/great-tip-when-creating-page-layouts.aspx" /><id>http://blogs.msdn.com/b/mortens/archive/2009/06/04/great-tip-when-creating-page-layouts.aspx</id><published>2009-06-04T09:14:00Z</published><updated>2009-06-04T09:14:00Z</updated><content type="html">&lt;P&gt;Came across&amp;nbsp;some must-know information, if you create page layouts and have trouble updating the layouts.&lt;/P&gt;
&lt;P&gt;When creating publishing page layouts they are nicely wrapped in features to avoid customization of the pages in SharePoint. However, if you use SharePoint Designer to create/modify your page layouts it will automatically add meta information to the page, which tells SharePoint always to customize the page.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.beckybertram.com/oldblog/index.php?p=37&amp;amp;more=1&amp;amp;c=1&amp;amp;tb=1&amp;amp;pb=1" mce_href="http://www.beckybertram.com/oldblog/index.php?p=37&amp;amp;more=1&amp;amp;c=1&amp;amp;tb=1&amp;amp;pb=1"&gt;See a great blog post from Becky about the issue here.&lt;/A&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9698496" width="1" height="1"&gt;</content><author><name>mortens</name><uri>http://blogs.msdn.com/mortens/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Not a folder-kind-of-guy...</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mortens/archive/2009/05/19/not-a-folder-kind-of-guy.aspx" /><id>http://blogs.msdn.com/b/mortens/archive/2009/05/19/not-a-folder-kind-of-guy.aspx</id><published>2009-05-19T21:03:00Z</published><updated>2009-05-19T21:03:00Z</updated><content type="html">&lt;P&gt;I love search -- and I always use search to find things that I need; files, emails, code etc .etc. etc. &lt;/P&gt;
&lt;P&gt;&amp;nbsp;I hate folders -- and never stick things in folders-in-folders-in-folders-in-folders. So whether it's.cs files in VS, or mails in Outlook -- I always keep them in one big folder. &lt;/P&gt;
&lt;P&gt;&amp;nbsp;...oddly enough none of my collegues agree.&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9628940" width="1" height="1"&gt;</content><author><name>mortens</name><uri>http://blogs.msdn.com/mortens/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>MOSS 2007 Search for Content Owners - ensure good data quality to improve the search experience </title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mortens/archive/2009/05/16/moss-2007-search-for-content-owners-ensure-good-data-quality-to-improve-the-search-experience.aspx" /><id>http://blogs.msdn.com/b/mortens/archive/2009/05/16/moss-2007-search-for-content-owners-ensure-good-data-quality-to-improve-the-search-experience.aspx</id><published>2009-05-16T21:25:00Z</published><updated>2009-05-16T21:25:00Z</updated><content type="html">&lt;P style="MARGIN: 6pt 0cm 3pt 11.35pt" class=MsoNormal&gt;To ensure good data quality and improve the search experience of the site make sure to:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;DIV style="MARGIN: 6pt 0cm 3pt 11.35pt" class=MsoNormal&gt;enter Title and Description for pages and sites – especially remember the default page, when creating a new site&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV style="MARGIN: 6pt 0cm 3pt 11.35pt" class=MsoNormal&gt;use readable URL names and titles. &lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV style="MARGIN: 6pt 0cm 3pt 11.35pt" class=MsoNormal&gt;don’t contract words in URL, but use hyphens (“-“) instead, like “news-article-about-software.aspx”&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV style="MARGIN: 6pt 0cm 3pt 11.35pt" class=MsoNormal&gt;avoid special characters like &amp;amp; / ‘ etc. in URLs&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV style="MARGIN: 6pt 0cm 3pt 11.35pt" class=MsoNormal&gt;avoid spaces in URLs, instead use hyphens.&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV style="MARGIN: 6pt 0cm 3pt 11.35pt" class=MsoNormal&gt;avoid&amp;nbsp;special national characters, instead use ASCII representation, where for Danish content ø=oe, æ=ae, å=aa&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV style="MARGIN: 6pt 0cm 3pt 11.35pt" class=MsoNormal&gt;do cross linking in the site, but enter meaningful link texts in articles when making cross references, like instead of “more…”, use “More about SharePoint…” . This will improve the search quality of the site.&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV style="MARGIN: 6pt 0cm 3pt 11.35pt" class=MsoNormal&gt;do not bury important content in a deep URL&lt;/DIV&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9623442" width="1" height="1"&gt;</content><author><name>mortens</name><uri>http://blogs.msdn.com/mortens/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Optimizing MOSS 2007 Search</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mortens/archive/2009/05/16/optimizing-moss-2007-search.aspx" /><link rel="enclosure" type="application/x-zip-compressed" length="3285589" href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-components-postattachments/00-09-62-34-06/Optimizing-MOSS-2007-Search.zip" /><id>http://blogs.msdn.com/b/mortens/archive/2009/05/16/optimizing-moss-2007-search.aspx</id><published>2009-05-16T20:57:00Z</published><updated>2009-05-16T20:57:00Z</updated><content type="html">&lt;P&gt;On friday I did a TechNet webcast about optimizing MOSS 2007 Search.&lt;/P&gt;
&lt;P&gt;It can be found recorded here:&lt;/P&gt;
&lt;P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;&lt;A href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032416746&amp;amp;Culture=da-DK" mce_href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032416746&amp;amp;Culture=da-DK"&gt;&lt;FONT size=3 face=Calibri&gt;http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032416746&amp;amp;Culture=da-DK&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal&gt;The webcast was with Danish speak, but the slides are in English and they are attached below.&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9623406" width="1" height="1"&gt;</content><author><name>mortens</name><uri>http://blogs.msdn.com/mortens/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Hidden Search Object</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mortens/archive/2008/02/22/hidden-search-object.aspx" /><id>http://blogs.msdn.com/b/mortens/archive/2008/02/22/hidden-search-object.aspx</id><published>2008-02-22T09:24:00Z</published><updated>2008-02-22T09:24:00Z</updated><content type="html">&lt;P&gt;The hidden search object is an internal singleton instance that is used by all the result web parts on the search result page. The web parts pass properties and settings to the hidden object and use it to handle all query specific logic.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Since the class is marked as internal it is only accessible within the&amp;nbsp;search assembly. It cannot be used and specialized in custom web parts.&lt;/P&gt;
&lt;P&gt;The hidden object parses the HTTP Post/Get information of the request and runs the query using the SharePoint object model - either using the FullTextSqlQuery or the KeywordQuery class.&lt;/P&gt;The query results are made available as xml to the consuming result web parts, which in turn will render results using XSL transformations.&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=7845331" width="1" height="1"&gt;</content><author><name>mortens</name><uri>http://blogs.msdn.com/mortens/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Search Center Search Result Page Infrastructure</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mortens/archive/2008/02/19/moss-search-center-search-result-page-infrastructure.aspx" /><id>http://blogs.msdn.com/b/mortens/archive/2008/02/19/moss-search-center-search-result-page-infrastructure.aspx</id><published>2008-02-19T14:16:00Z</published><updated>2008-02-19T14:16:00Z</updated><content type="html">&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;The search result page is a core piece of the search user interface since it owns:&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;DIV class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Building the query&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Issuing the query against the SharePoint index&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Receive results and organizing the results&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Rendering results and interaction with the user &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt" mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;A class="" title=_Toc156802547 name=_Toc156802547&gt;&lt;/A&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;&lt;STRONG&gt;Web parts&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;The result page contains several web parts that all interact and they each own part of the search experience:&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;TABLE class=MsoTableGrid style="BORDER-RIGHT: medium none; BORDER-TOP: medium none; BORDER-LEFT: medium none; BORDER-BOTTOM: medium none; BORDER-COLLAPSE: collapse; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-yfti-tbllook: 1184; mso-padding-alt: 0cm 5.4pt 0cm 5.4pt" cellSpacing=0 cellPadding=0 border=1 class="MsoTableGrid"&gt;
&lt;TBODY&gt;
&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes"&gt;
&lt;TD class="" style="BORDER-RIGHT: black 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: black 1pt solid; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0cm; BORDER-LEFT: black 1pt solid; WIDTH: 140.1pt; PADDING-TOP: 0cm; BORDER-BOTTOM: black 1pt solid; BACKGROUND-COLOR: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1" vAlign=top width=187&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Web part&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT: black 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: black 1pt solid; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0cm; BORDER-LEFT: #f0f0f0; WIDTH: 348.8pt; PADDING-TOP: 0cm; BORDER-BOTTOM: black 1pt solid; BACKGROUND-COLOR: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-themecolor: text1; mso-border-left-alt: solid black .5pt" vAlign=top width=465&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Description&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 1"&gt;
&lt;TD class="" style="BORDER-RIGHT: black 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: #f0f0f0; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0cm; BORDER-LEFT: black 1pt solid; WIDTH: 140.1pt; PADDING-TOP: 0cm; BORDER-BOTTOM: black 1pt solid; BACKGROUND-COLOR: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1" vAlign=top width=187&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Core Results&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT: black 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: #f0f0f0; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0cm; BORDER-LEFT: #f0f0f0; WIDTH: 348.8pt; PADDING-TOP: 0cm; BORDER-BOTTOM: black 1pt solid; BACKGROUND-COLOR: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1" vAlign=top width=465&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;The main web part of the result page.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&lt;FONT size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;The core results web part will show the ranked results order by relevance by default. &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&lt;FONT size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 2"&gt;
&lt;TD class="" style="BORDER-RIGHT: black 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: #f0f0f0; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0cm; BORDER-LEFT: black 1pt solid; WIDTH: 140.1pt; PADDING-TOP: 0cm; BORDER-BOTTOM: black 1pt solid; BACKGROUND-COLOR: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1" vAlign=top width=187&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;High Confidence Results&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT: black 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: #f0f0f0; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0cm; BORDER-LEFT: #f0f0f0; WIDTH: 348.8pt; PADDING-TOP: 0cm; BORDER-BOTTOM: black 1pt solid; BACKGROUND-COLOR: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1" vAlign=top width=465&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;This web part will show best bet results, special terms, people and keyword definitions for the query. &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&lt;FONT size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Exactly what is visible can be configured in the shared web part properties.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&lt;FONT size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;High confidence results will always rely on exact keyword matches &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&lt;FONT size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 3"&gt;
&lt;TD class="" style="BORDER-RIGHT: black 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: #f0f0f0; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0cm; BORDER-LEFT: black 1pt solid; WIDTH: 140.1pt; PADDING-TOP: 0cm; BORDER-BOTTOM: black 1pt solid; BACKGROUND-COLOR: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1" vAlign=top width=187&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Search Best bets&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT: black 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: #f0f0f0; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0cm; BORDER-LEFT: #f0f0f0; WIDTH: 348.8pt; PADDING-TOP: 0cm; BORDER-BOTTOM: black 1pt solid; BACKGROUND-COLOR: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1" vAlign=top width=465&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;This web part will show best bet results&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&lt;FONT size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 4"&gt;
&lt;TD class="" style="BORDER-RIGHT: black 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: #f0f0f0; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0cm; BORDER-LEFT: black 1pt solid; WIDTH: 140.1pt; PADDING-TOP: 0cm; BORDER-BOTTOM: black 1pt solid; BACKGROUND-COLOR: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1" vAlign=top width=187&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Search Paging &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT: black 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: #f0f0f0; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0cm; BORDER-LEFT: #f0f0f0; WIDTH: 348.8pt; PADDING-TOP: 0cm; BORDER-BOTTOM: black 1pt solid; BACKGROUND-COLOR: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1" vAlign=top width=465&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Paging web part will control paging of the result&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&lt;FONT size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 5"&gt;
&lt;TD class="" style="BORDER-RIGHT: black 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: #f0f0f0; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0cm; BORDER-LEFT: black 1pt solid; WIDTH: 140.1pt; PADDING-TOP: 0cm; BORDER-BOTTOM: black 1pt solid; BACKGROUND-COLOR: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1" vAlign=top width=187&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Search Summary&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT: black 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: #f0f0f0; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0cm; BORDER-LEFT: #f0f0f0; WIDTH: 348.8pt; PADDING-TOP: 0cm; BORDER-BOTTOM: black 1pt solid; BACKGROUND-COLOR: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1" vAlign=top width=465&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;This web part provides a summary of the query. It is outputting the keyword/scope that’s being queried.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&lt;FONT size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow: 6; mso-yfti-lastrow: yes"&gt;
&lt;TD class="" style="BORDER-RIGHT: black 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: #f0f0f0; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0cm; BORDER-LEFT: black 1pt solid; WIDTH: 140.1pt; PADDING-TOP: 0cm; BORDER-BOTTOM: black 1pt solid; BACKGROUND-COLOR: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1" vAlign=top width=187&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Result Statistics&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT: black 1pt solid; PADDING-RIGHT: 5.4pt; BORDER-TOP: #f0f0f0; PADDING-LEFT: 5.4pt; PADDING-BOTTOM: 0cm; BORDER-LEFT: #f0f0f0; WIDTH: 348.8pt; PADDING-TOP: 0cm; BORDER-BOTTOM: black 1pt solid; BACKGROUND-COLOR: transparent; mso-border-alt: solid black .5pt; mso-border-themecolor: text1; mso-border-left-themecolor: text1; mso-border-left-alt: solid black .5pt; mso-border-top-alt: solid black .5pt; mso-border-top-themecolor: text1; mso-border-bottom-themecolor: text1; mso-border-right-themecolor: text1" vAlign=top width=465&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;This web part will show the statistics of the query.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Basically number of results, total number of results and the elapsed query time.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&lt;FONT size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;All of the web parts use the same hidden object instance to &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;DIV class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;initiate the query and configure properties&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;get the results in xml when they are ready&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;All the web parts specify a result search ID that they are associated with – default is &lt;I style="mso-bidi-font-style: normal"&gt;query1&lt;/I&gt;. &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=7790822" width="1" height="1"&gt;</content><author><name>mortens</name><uri>http://blogs.msdn.com/mortens/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Advanced Search Box</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mortens/archive/2008/02/19/advanced-search-box.aspx" /><id>http://blogs.msdn.com/b/mortens/archive/2008/02/19/advanced-search-box.aspx</id><published>2008-02-19T14:12:00Z</published><updated>2008-02-19T14:12:00Z</updated><content type="html">&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;The advanced search box is available for more specialized queries filtering different scopes, properties and free text clauses. &lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;A class="" title=_Toc156802542 name=_Toc156802542&gt;&lt;/A&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;&lt;STRONG&gt;Find documents with&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;The standard advanced search web part uses FREETEXT SQL clause for "find document with..." keyword terms. Below samples are shown of how keywords are translated: &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&lt;FONT size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;&lt;STRONG&gt;All words (AND)&lt;o:p&gt;&lt;/o:p&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Keywords: john smith &lt;SPAN style="mso-tab-count: 1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;SQL clause: freetext(defaultproperties, '+john +smith')&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&lt;FONT size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;&lt;STRONG&gt;Phrase&lt;o:p&gt;&lt;/o:p&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Keywords: "john smith"&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;SQL clause: freetext(defaultproperties, '"john smith"')&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&lt;FONT size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;&lt;STRONG&gt;Any words (OR)&lt;o:p&gt;&lt;/o:p&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Keywords: john smith &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;SQL clause: freetext(defaultproperties, ‘john smith’)&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&lt;FONT size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Note, this is how the hidden object submits the OR query by using the freetext(defaultproperties, ‘john smith’)&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;– However, if the query is done using the Search WebService it will interpreted it as an AND query. This is most likely because the hidden object uses KeywordInclusion.AnyKeyword on the FullTextSqlQuery object.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&lt;FONT size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;&lt;STRONG&gt;None of words (NOT)&lt;o:p&gt;&lt;/o:p&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Keywords: john Smith&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;SQL clause: freetext(defaultproperties, '-john -smith')&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&lt;FONT size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;The different clauses work across the different keyword inputs, fx:&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;&lt;STRONG&gt;All words&lt;o:p&gt;&lt;/o:p&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Keyword: john &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;&lt;STRONG&gt;None of words&lt;o:p&gt;&lt;/o:p&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Keyword: Smith&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;SQL clause: freetext(defaultproperties, '+john -smith)&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&lt;FONT size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;A class="" title=_Toc156802543 name=_Toc156802543&gt;&lt;/A&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;&lt;STRONG&gt;Property restrictions&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&lt;/SPAN&gt;"Add property restrictions..." allows the user to select filtering on individual properties, like author, title or description. The properties will change depending on the selected result type. The available properties for All results are the following:&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Author&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Description&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Name&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Size&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;URL &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Created date&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Last Modified Date&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Created by&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Last Modified by&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&lt;FONT size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;You can add your own custom properties by 1) mapping the crawled property to a managed property and 2) changing the result type xml of the advanced search web part to include the property. Using the result type xml you can also add new types of results for specialized content types.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&lt;FONT size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Even though the user interface says "contains" in the operator drop down, &lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&lt;/SPAN&gt;it is important to note that that it actually doesn’t use a CONTAINS SQL&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;clause. Instead it uses a LIKE statement, for example a property search on author is translated to the following clause:&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;(Author LIKE '%john%').&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&lt;FONT size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&lt;/SPAN&gt;None of the search component use the CONTAINS clause. That means that asterisk (*) cannot be used as wildcard operation in any of the standard search web parts and UI.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&lt;FONT size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;Note, adding property restrictions to the query will most like slow down the query.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt" mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;A class="" title=_Toc156802544 name=_Toc156802544&gt;&lt;/A&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;&lt;STRONG&gt;Scopes&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;As a final option the advanced search gives to the possibility to filter results based on either language, item type or site scope.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0cm 0cm 10pt"&gt;&lt;SPAN lang=EN-US style="FONT-FAMILY: 'Tahoma','sans-serif'; mso-ansi-language: EN-US"&gt;&lt;FONT size=3&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=7790766" width="1" height="1"&gt;</content><author><name>mortens</name><uri>http://blogs.msdn.com/mortens/ProfileUrlRedirect.ashx</uri></author></entry></feed>