如何以编程方式将属性元标记添加到头部

发布于 2024-11-14 20:24:39 字数 177 浏览 1 评论 0原文

我想在下面添加以下元标记,但在页面加载时动态执行此操作,以便万一我们不需要添加它,我们就不会添加它。

<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 技术交流群。

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

发布评论

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

评论(1

喜爱皱眉﹌ 2024-11-21 20:24:39

试试这个:

    Dim tempMeta As New HtmlMeta
    Dim tempHead As HtmlHead = Page.Header
    With tempMeta
        .Attributes.Add("property", "example")
        .Content = "example"
    End With
    tempHead.Controls.Add(tempMeta)

编辑:抱歉,我错过了您问题中的“属性”属性。

Try this:

    Dim tempMeta As New HtmlMeta
    Dim tempHead As HtmlHead = Page.Header
    With tempMeta
        .Attributes.Add("property", "example")
        .Content = "example"
    End With
    tempHead.Controls.Add(tempMeta)

Edit: Sorry, I had missed the "property" attribute in your question.

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