动态数据 Web 项目的 CSS 样式在哪里?
在 ASP.NET 动态数据网站/项目中,所有模板都有 CSS 类,例如 CssClass="DDFilter"
,但我在任何地方都找不到这些样式。它们是由处理程序或其他东西动态提供的,还是我必须自己提供?
In an ASP.NET Dynamic Data web site/project, all the templates have CSS classes like CssClass="DDFilter"
, but I can't find these styles anywhere. Are they served dynamically from a handler or something, or do I have to provide them all myself?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在
Site.css
下找到默认值,该默认值是在创建动态数据项目时自动创建的。 Site.css 文件位于根目录下(在 global.asax 和 Site.master 之间创建之后)Grz, Kris。
You can find the default under
Site.css
which is automatically made when you create a Dynamic Data project. The Site.css file is located under the root (after creation between global.asax and Site.master)Grz, Kris.