c#动态改变CSS

动态改变CSS
HtmlGenericControl objLink=new HtmlGenericControl("LINK");
objLink.Attributes["rel"]="stylesheet";
objLink.Attributes["type"]="text/css";
objLink.Attributes["href"]="a.css";
原文地址:https://www.cnblogs.com/zzxap/p/2175821.html