从链接标签访问主题目录中的图像
我有一个链接标签,它为页面分配一个书签图标:
<link rel="shortcut icon" href="/App_Themes/Default/images/bookmark.ico" type="image/x-icon"/>
目前,它被硬编码到默认主题,但我希望它根据应用于网络应用程序的主题进行更改。如何指向当前主题目录?
I have a link tag which assignes a bookmark icon to the page:
<link rel="shortcut icon" href="/App_Themes/Default/images/bookmark.ico" type="image/x-icon"/>
Currently, it's hard coded to the Default theme, but I want it to change based on the theme that is applied to the web app. How can I point to the current theme directory?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
this.Theme 返回当前所选主题的字符串属性。您需要使用字符串操作自行组装 href 属性。
this.Theme returns the string property of the currecntly selected theme. You need to assemble the href Attribute yourself using string operations.