ASP.Net 中的 CSS、主题和皮肤是什么?
我是 ASP.Net 的初学者。我想知道 ASP.Net 中的 CSS、主题和皮肤是什么?以及如何在 ASP.Net 中创建和使用这些东西?请用简单的例子解释一下。谢谢。
I am a beginner in ASP.Net. I want to know what is CSS, Themes and Skin in ASP.Net? and How to create and use these things in ASP.Net? Please explain with simple example. Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CSS 代表级联样式表,独立于 ASP.NET。 CSS 用于将布局和视觉样式应用于页面上的元素,例如将标题设为红色:
在此处了解有关 CSS 的更多信息:http://www.w3schools.com/css/default.asp
主题和皮肤是 ASP.NET 中将服务器控件的视觉外观与标记分离的一种方式,并允许您通过更改主题来交换运行时的视觉外观。来自 MSDN 页面:
在此处阅读更多信息:http://msdn.microsoft.com/en-us/library /ykzx33wh.aspx
CSS stands for cascading style sheets and is independent of ASP.NET. CSS is used to apply layout and visual style to elements on a page, for instance to make headings red:
Learn more about CSS here: http://www.w3schools.com/css/default.asp
Themes and Skins are a way in ASP.NET to decouple the visual appearance of your server controls from the markup, and allow you to swap out the visual appearance at run time by changing the theme. From the MSDN page:
Read more here: http://msdn.microsoft.com/en-us/library/ykzx33wh.aspx