我正在使用一个非常简单的 HtmlGenericControl 代码,它只是在我后面的代码中动态添加 CSS,它给我的对象引用没有设置为一个对象的实例,你清楚地看到它不是 null
HtmlGenericControl style = new HtmlGenericControl();
style.TagName = "style";
style.Attributes.Add("type", "text/css");
style.InnerHtml = "header{"+ imagePath +";}";
Page.Header.Controls.Add(style);