自动生成的 Visual Studio有什么用处吗?标签
我们有一个旧项目,每个页面中都有这些 标记。该网站是一个内联网 Web 应用程序。
<meta name="GENERATOR" content="Microsoft Visual Studio 7.0" />
<meta name="CODE_LANGUAGE" content="C#" />
<meta name="vs_defaultClientScript" content="JavaScript" />
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5" />
- 它们有任何价值或用途吗?
- 删除它们安全吗?
如果这对智能感知很重要,我正在使用 VS2005。
We have an old project lying around with these <meta>
tags in every page. This website is an intranet web application.
<meta name="GENERATOR" content="Microsoft Visual Studio 7.0" />
<meta name="CODE_LANGUAGE" content="C#" />
<meta name="vs_defaultClientScript" content="JavaScript" />
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5" />
- Do they have any value or use?
- Is it safe to remove them?
I'm using VS2005 if that matters for the intellisense.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它们对 Web 客户端没有用处(除了泄露有关您的开发环境的信息并占用带宽),仅适用于您的开发环境。
They have no use for web clients (other then leaking information about your development environment and using up bandwidth) only for your development environment.
我相信
vs_defaultClientScript
和vs_targetSchema
用于智能感知。您可以毫无问题地删除其他标签。I believe that the
vs_defaultClientScript
andvs_targetSchema
are used for intelisense. You can remove the other tags without any problems.在某些机器上,它可能会导致 IE 11 中的页面加载缓慢,但尚不清楚这取决于什么。办公室里只有一名用户遇到了问题 - 必须等待 5 - 10 秒才能加载页面,其他用户立即看到......在相同的 Win 7 和 IE 11 上。我删除了
没关系。
On some machines it can cause slow loading of the page in IE 11, but it's not clear, on what it depends. Just one user in the office had problems - had to wait 5 - 10 seconds for loading the page, which other users saw immediately... on same Win 7 and IE 11. I removed
and it's OK.