将开放搜索功能添加到现有 ASP.NET MVC 网站的步骤是什么?

发布于 2024-08-15 12:11:29 字数 127 浏览 7 评论 0原文

我注意到,当我通过 Firefox 访问某些网站(包括 Stackoverflow)时,会有一个小蓝色圆圈显示我可以将该网站添加到我的搜索提供商中。 所以想知道如何将此功能添加到我的 MVC 项目中。 我听说应该添加一个 XML 文件...

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 ...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风吹雪碎 2024-08-22 12:11:29

请按照 本指南

不过,这就是它的核心内容...

母版页中的链接:

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

上面提到的 browserplugin.xml 文件应如下所示:

<?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>

请注意,您应该(显然)根据相应情况适当更改该网址到您的网站。特别是 OpenSearchDescription 中的 Url,以便与您的搜索 URL 匹配。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文