我的網站目前將自定義多功能框搜索引擎使用下面的代碼瀏覽器:OpenSearch的自動完成與ASP.net
ombnibox.xml
<?xml version="1.0"?>
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
<ShortName>Example </ShortName>
<Description>Example Search</Description>
<Url type="text/html" template="http://Example.com /search.aspx?searchVal= {searchTerms}"></Url>
</OpenSearchDescription>
我的網站母版頁包括:
<link type="application/opensearchdescription+xml" title="Example" rel="search" href="/omnibox.xml" />
這很好,用戶可以毫無問題地進入我的搜索結果頁面。我想將搜索建議整合到這個自定義搜索引擎中,但我甚至不知道從哪裏開始。我發現了一堆返回JSON的PHP示例,但我找不到一個ASP.net的示例或從數據庫中檢索結果建議的示例。
任何幫助都會很棒。