您可以通过 CSS 或 ASP.net 2.0 中的 Skin 设置页面标题吗
我正在使用 asp.net 2.0 我知道可以通过后面的代码设置页面标题。 但是可以使用主题、皮肤或 CSS 设置页面标题吗?
我需要根据所选主题显示不同的标题。
I am using asp.net 2.0 I know can set the pages title via the code behind. But is it possible to set the page title using Theme, skin or css?
I need to display a different title depending on the theme selected.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通过在页面的 Head 元素中插入 Literal 控件,您应该能够对其应用主题,从而设置其 Text 属性。
如果这不起作用,您可以随时检查 Page.Theme 属性并相应地设置页面标题。
By inserting a Literal control in the Head-element of the page you should be able to apply a theme to it and thereby set its Text property.
If that doesn't work you can always check the Page.Theme property and set the pages title accordingly.
不通过 CSS
Not via CSS