母版页的 head 标签元素上有 runat=server ,它正在使用主题注入样式表?
母版页的 head 标签元素上有 runat=server ,由于某种原因,它在页面上注入样式表,但我没有明确执行此操作。
是添加样式表的主题设置吗?如何为此母版页禁用它?
master page has runat=server on the head tag element, it is injecting a stylesheet on the page for some reason and I am not doing it explicitly.
Is it a themes setting that is adding the stylesheet? How can I disable it for this master page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,我怀疑有一个主题,将其删除:
尝试在您的
母版页标头。
如果您根本不想要主题,请查看
对于
中的
属性web.config 文件并将其注释掉。
Yes I would suspect a theme, to remove it:
Try
EnableTheming="false"
in yourmasterpage header.
If you don't want themes at all look
for
<pages theme="Name of theme goes here" />
attribute in yourweb.config file and comment it out.