Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建一个 CMS,我想从数据库中动态加载样式。我创建了一个返回样式表的 ASHX 处理程序。然后我像这样引用处理程序:
<link href="/Assets/Get.ashx?aid=1" rel="stylesheet" type="text/css" />
当我在浏览器中单击链接时,它会按预期加载样式表。但是,当我检查元素时,我发现没有应用任何样式。
这是不可能的事情吗?
您的 ASHX 处理程序是否在响应中设置了正确的 Content-Type ( text/css)?
text/css