外部配置文件中的 browserCaps
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在项目中创建一个新的 web.config 文件并将其命名为 browserCaps.config
粘贴最新 browserCaps 的 XML ( http://owenbrady.net/browsercaps/CodeProject.xml) 到这个新文件中。< /p>
在项目的现有 web.config 文件中,在
部分添加以下键:另请参阅此链接:http://weblogs.asp.net/fmarguerie/archive /2007/04/26/using-configsource-to-split-configuration-files.aspx
Create a new web.config file in your project and call it browserCaps.config
Paste the XML of the latest browserCaps (http://owenbrady.net/browsercaps/CodeProject.xml) into this new file.
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
它只是 XML,可以在此处找到 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):
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.