문제

I notices when i go to some sites (include Stackoverflow) by Firefox a little blue circle shows I can add the site to my Search providers . so wanted to know how can add this feature to my MVC project . I Heared an XML file should be added ...

도움이 되었습니까?

해결책

Follow the instructions in this guide.

This is the meat and veg of it though...

The link in your master page:

<link rel="search" type="application/opensearchdescription+xml" href="http://mysite.com/browserplugin.xml" title="My Site Search" />  

The browserplugin.xml file mentioned above should look like this:

<?xml version="1.0"?>
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
    <ShortName>My Site Search</ShortName>
    <Description>My Site Search</Description>
    <Image height="16" width="16" type="image/x-icon">http://mysite.com/favicon.ico</Image>
    <Url type="text/html" method="get" template="http://mysite.com/search/{searchTerms}"/>
</OpenSearchDescription>

Note that you should (obviously) change that urls appropriately according to your website. Specifically the Url in the OpenSearchDescription in order to match your search url.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top