在现代网站中,搜索功能是提高用户体验的关键组件。本文将介绍如何利用SharePointPortal Server(SPS) 为内容管理系统 (CMS) 网站提供强大的搜索能力。将使用SPS的搜索Web服务来实现简单的关键词搜索,并允许用户选择特定的内容索引。搜索结果将显示在一个可定制的DataGrid中。
请参考Emmanuel Desigaud的文章,了解如何为搜索设置SPS。基本上,需要设置一个内容索引并添加一个内容源。同时,请确保在CMS网站上执行搜索的用户能够访问SPS搜索Web服务。
如果网站有XML目录,请将SPSSearch.xml复制到该目录,或者复制到网站的任何位置。如果希望在搜索结果中包含额外的列,请在select语句中添加额外的字段。还可以根据需要更改返回的最大搜索结果数量:<Count>500</Count>
。
将用户控件SearchInput复制到用户控件目录。默认的搜索按钮是文本按钮。如果想要一个图像按钮,请相应地更改SearchButton和SearchImageButton的Visible属性,并更新SearchImageButton的ImageUrl。即使不使用两个按钮,也不要删除任何一个。
将用户控件SearchResults复制到用户控件目录。如果在SPSSearch.xml中添加了额外的字段,请自定义SearchResult.ascx以包含这些字段。
可能需要在SearchInput.ascx、SearchInput.ascx.vb、SearchResults.ascx和SearchResults.ascx.vb中使用项目名称来限定一些命名空间。
将QueryService.vb和SearchUtilities.vb复制到类目录。
将Search.css复制到CSS目录。
在web.config中添加以下键到appSettings:
<appSettings>
<add key="QuestechSystems.SPSSearchUrl" value="http://<SPSServer>/_vti_bin/search.asmx"/>
<add key="QuestechSystems.SPSSearchXml" value="[Url to SPSSearch.xml]"/>
<add key="QuestechSystems.SPSSearchIndexesText" value="[A comma delimited list of Content Indexes Display Name]"/>
<add key="QuestechSystems.SPSSearchIndexesValue" value="[A comma delimited list of Content Indexes]"/>
</appSettings>
例如:
<appSettings>
<add key="QuestechSystems.SPSSearchUrl" value="http://<SPSServer>/_vti_bin/search.asmx"/>
<add key="QuestechSystems.SPSSearchXml" value="/<CMS Site Application Name>/Xml/SPSSearch.xml"/>
<add key="QuestechSystems.SPSSearchIndexesText" value="All,Sub Site 1,Sub Site 2"/>
<add key="QuestechSystems.SPSSearchIndexesValue" value="All,Sub_Site_1_Content_Index,Sub_Site_2_Content_Index"/>
</appSettings>
将在SearchInput用户控件中添加指定的内容索引的下拉列表。SPSSearchIndexesValue中的"All"是一个特殊值,定义在SPSSearchIndexesValue中定义的所有内容索引上执行搜索。如果只有一个内容索引要搜索,请添加以下内容:
<appSettings>
<add key="QuestechSystems.SPSSearchUrl" value="http://<SPSServer>/_vti_bin/search.asmx"/>
<add key="QuestechSystems.SPSSearchXml" value="/<CMS Site Application Name>/Xml/SPSSearch.xml"/>
<add key="QuestechSystems.SPSSearchIndexesValue" value="Site_Content_Index"/>
</appSettings>
在这种情况下,不会为这种情况添加下拉列表。
将用户控件SearchInput添加到CMS网站,希望搜索输入框显示的位置。通过SearchResultsUrl属性指定结果页面的URL。搜索结果页面可以是CMS模板页面或常规ASP.NET页面。例如:
<%@ Register TagPrefix="uc1" TagName="SearchInput" Src="~/UserControls/SearchInput.ascx" %>
...
<uc1:SearchInput id="SearchInput" SearchResultsUrl="" DefaultSearchIndex="" runat="server">
</uc1:SearchInput>
如果未指定SearchResultsUrl,则当前页面将用作结果页面。如果指定了多个内容索引,可以使用DefaultSearchIndex属性选择要搜索的默认内容索引。自定义SearchInput.ascx以更改搜索输入元素的布局。
将用户控件SearchResult添加到搜索结果页面。该控件有两个属性可以设置:
在引用搜索控件的所有页面中包含Search.css。
将所有新文件包含到CMS项目中。在VS.NET中重建网站。