外部配置文件中的 browserCaps

发布于 2024-07-15 03:20:40 字数 64 浏览 4 评论 0原文

BrowserCaps 设置相当长。 有没有办法将其纳入外部配置文件中。

有人知道标记吗?

The BrowserCaps setting is rather quite long. Is there a way to factor it into an external config file.

does anyone know the markup?

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

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

发布评论

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

评论(2

冬天旳寂寞 2024-07-22 03:20:40
  1. 在项目中创建一个新的 web.config 文件并将其命名为 browserCaps.config

  2. 粘贴最新 browserCaps 的 XML ( http://owenbrady.net/browsercaps/CodeProject.xml) 到这个新文件中。< /p>

  3. 在项目的现有 web.config 文件中,在 部分添加以下键:

另请参阅此链接:http://weblogs.asp.net/fmarguerie/archive /2007/04/26/using-configsource-to-split-configuration-files.aspx

  1. Create a new web.config file in your project and call it browserCaps.config

  2. Paste the XML of the latest browserCaps (http://owenbrady.net/browsercaps/CodeProject.xml) into this new file.

  3. In the existing web.config file of your project, add the following key within the <system.web></system.web> section:

    <browserCaps configSource="browserCaps.config"/>

Also see this link: http://weblogs.asp.net/fmarguerie/archive/2007/04/26/using-configsource-to-split-configuration-files.aspx

烟若柳尘 2024-07-22 03:20:40

它只是 XML,可以在此处找到 BrowserCaps 文件的更新版本(支持 这个之前的答案为我指明了方向):

浏览器侦探和 BrowserCaps 资源

如果您使用的是 ASP.NET 2.0+,则作为 browserCaps 元素已弃用,从 .NET 2.0 开始,您应该考虑使用 .browser 文件

It's just XML, and an updated version of the BrowserCaps file can be found here (props to this previous answer for pointing me in that direction):

Browser Detective and BrowserCaps Resources

If you're using ASP.NET 2.0+ then as the browserCaps element is deprecated as of .NET 2.0, you should look into using .browser files in an /App_Browsers folder.

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