当时,在 HEAD 中插入文字控制没有指定吗?

发布于 2024-12-02 12:35:41 字数 166 浏览 0 评论 0原文

由于各种原因,我无法标记我的 标签 runat="server"。我是否有另一种方法可以访问它并在其下方附加文字?我需要添加一个脚本(作为文字),并将其作为 标记内部引用的第一个脚本。

也许使用 FindControl?

I am unable to mark my <head> tag runat="server" for various reasons. Is there another way for me to access it and append a literal beneath it? I need to add a script (as a literal) and have it be the first script referenced under the inside the <head> tag.

Maybe using FindControl?

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

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

发布评论

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

评论(2

忆悲凉 2024-12-09 12:35:41

可以声明 Library 服务器控件,而无需使用head 元素被定义为服务器控件:

<head>
    <asp:Literal ID="literal1" runat="server"></asp:Literal>
    <title></title>
</head>

使用此元素,您可以根据需要从后面的代码添加内容:

protected void Page_Load(object sender, EventArgs e)
{
    literal1.Text = "<script type=\"text/javascript\" src=\"scripts.js\"></script>";
}

A Literal server control can be declared without the head element being defined as a server control:

<head>
    <asp:Literal ID="literal1" runat="server"></asp:Literal>
    <title></title>
</head>

Using this you can then add content as required from the code behind:

protected void Page_Load(object sender, EventArgs e)
{
    literal1.Text = "<script type=\"text/javascript\" src=\"scripts.js\"></script>";
}
悲歌长辞 2024-12-09 12:35:41

您只能使用FindControl 来查找控件,即服务器控件的元素。所有其他元素仅在文字控件中作为文本处理。

您可以在 head 标记中放置一个 PlaceHolder 控件,然后您可以在其中添加文字控件。

You can only use FindControl to find controls, i.e. elements that are server controls. All other elements are just handled as text in literal controls.

You can put a PlaceHolder control in the head tag, then you can add literal controls inside it.

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