如何以编程方式将属性元标记添加到头部
我想在下面添加以下元标记,但在页面加载时动态执行此操作,以便万一我们不需要添加它,我们就不会添加它。
<meta property="example" content="example" />
这是使用 Visual Studio 2008 的 VB.Net。
I would like to add the following meta tag below but do it dynamically when the page loads so that in case we do not need to add it we will not.
<meta property="example" content="example" />
This is in VB.Net with Visual Studio 2008.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
编辑:抱歉,我错过了您问题中的“属性”属性。
Try this:
Edit: Sorry, I had missed the "property" attribute in your question.