当时,在 HEAD 中插入文字控制没有指定吗?
由于各种原因,我无法标记我的 标签
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可以声明 Library 服务器控件,而无需使用head 元素被定义为服务器控件:
使用此元素,您可以根据需要从后面的代码添加内容:
A Literal server control can be declared without the head element being defined as a server control:
Using this you can then add content as required from the code behind:
您只能使用
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.