主题/皮肤在 VS2008 中不再起作用

发布于 2024-07-29 11:11:39 字数 445 浏览 7 评论 0原文

我无法让主题/皮肤在 VS2008 中工作。 相同的asp.net2.0代码在VS2005中工作正常。

我正在使用母版页,并且在内容页面内我会有类似的内容: <代码>

在 App_Themes/Default/button.skin 文件中,我会有类似

的内容

但按钮仍然显示白色。 有人知道为什么吗?谢谢。

I couldn't make the theme/skin thing work in VS2008. Same asp.net2.0 code works fine in VS2005.

I am using Masterpage, and inside content page I would have something like:

<asp:Button ID="testid" runat="server" SkinID="RedBlueButton" Text="TestButton"></asp:Button>

and in the App_Themes/Default/button.skin file, I would have something like


<asp:Button SkinID="RedBlueButton" runat="server"
BackColor="Blue"
ForeColor="Red"
Font-Name="Arial"
Font-Size="9px" />

but the button still shows white. Anybody have any idea why? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

长途伴 2024-08-05 11:11:39

您确定主题已在 web.config 中指定吗?

Are you sure the theme is specified in web.config?

舞袖。长 2024-08-05 11:11:39

好吧,当我在 <%@ Page > 中显式添加 Theme="Default" 时,它又起作用了。 指令。 但是,它仍然抱怨“默认”是无效的主题名称,即使我的所有主题文件都位于 App_Themes/Default/ 下

Ok, it worked again when I explicitly add Theme="Default" in the <%@ Page > directive. However, it still complains that the "Default" is an invalid theme name even though all my theme files are under App_Themes/Default/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文