本文介绍了从 ASP.NET 服务器控件动态添加 CSS 文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个自定义控件,我想动态插入一个指向样式表的链接.
I have a custom control and I want to dynamically insert a link to a stylesheet.
可能不是今年最好的解决方案,但它需要完成.知道怎么做吗?
Might not be the best solution of the year but it needs to be done. Any idea how to do it?
每次我尝试时,Page.Header 都是空的.
Everytime I try, Page.Header is null.
推荐答案
以下是您通常以编程方式添加 CSS 的方式:
Here's how you would normally add a CSS programatically:
protected void Page_Init(object sender, EventArgs e)
{
var link = new HtmlLink();
link.Href = "~/styles/main.css";
link.Attributes.Add("rel", "stylesheet");
link.Attributes.Add("type", "text/css");
Page.Header.Controls.Add(link);
}
您可能需要将 runat="server"
放在 head
标签中:
You might need to put a runat="server"
in the head
tag:
<head runat="server">
<title>Add CSS example</title>
</head>
这篇关于从 ASP.NET 服务器控件动态添加 CSS 文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!