我的 App_Themes 文件夹中有一个 CSS 文件 - 如何将其应用到我的 Web 用户控件?
有什么帮助吗?我似乎无法弄清楚。
Any help? I can't seem to figure it out.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有什么帮助吗?我似乎无法弄清楚。
Any help? I can't seem to figure it out.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
我不确定我是否正确理解你的问题(如果问题的标题比正文长的话,通常......)。但如果您尝试将皮肤应用于自定义控件,以下链接可能会有所帮助。
主题ASP.NET 中的自定义控件 和 ASP.NET 2.0 主题和自定义控件。
归根结底,您的皮肤文件中有一个
<%@ Register TagPrefix=...
指令。我想说,常规 CSS 文件不是“由你应用的”。浏览器“只是应用它们”。因此,如果您的控件输出引用 CSS 中存在的样式的 HTML,那就没问题(也许检查渲染页面的源代码?)。
I am not sure if I understand you question correctly (as often if the title of the question is longer than the text...). But if you are trying to apply a skin to a custom control the following links might help.
Themes for Custom Controls in ASP.NET and ASP.NET 2.0 Themes and Custom Controls.
It comes down to have a
<%@ Register TagPrefix=...
directive in your skin file.Regular CSS files are not "applied by you", I would say. The browser "just applies them". So if your control outputs HTML that references a style that exists in you CSS you are OK (check the source of the rendered page maybe?).