如何在 ASP.NET 中的主题之间共享 .skin 主题文件?
我们有一个带有多个 asp.net 主题的旧应用程序。每个主题都有一个 .skin 文件。除了某些内容之外,每个皮肤文件几乎都是相同的。这些文件有很多相似之处。是否可以跨主题共享通用的 .skin 文件?
We have a legacy app with multiple asp.net themes. Each theme have a .skin file. Each skin file is almost identical except for some things. The files share a lot of similarities. Is it possible to share a common .skin file across themes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可以通过在某处创建基本主题皮肤文件,然后使用包含在特定主题皮肤文件中来实现。
例如,您可以在 baseTheme.skin 中定义所有控件并将其放在服务器上的某个位置。然后,在您的特定主题文件(theme.skin)中,您将包含回您的基础。
It is possible by creating a base theme skin file somewhere and then using an include in the specific theme skin files.
For instance, you would define all your controls in baseTheme.skin and put it somewhere on your server. Then, in your specific theme file (theme.skin), you would do an include back to your base.
不幸的是,这是不可能的,皮肤是根据设计包含在主题中的:
http://forums.asp .net/t/1268733.aspx/1
Unfortunately it's not possible, skins are by design contained within a theme:
http://forums.asp.net/t/1268733.aspx/1