如何从aspx页面访问.skin文件

发布于 2024-09-29 06:45:40 字数 375 浏览 4 评论 0原文

我的 app.themes 文件夹中有一个 .skin 文件。要从 asp 页面访问 .css 文件,我们必须提供链接。但我在 asp 标头中找不到任何内容来提供 .skin 文件的链接。

<asp:TextBox SkinID="txtBox" ID="TextBox1" runat="server"></asp:TextBox>

我收到以下错误.. 已指定 SkinID,但页面未配置为使用页面主题或样式表主题。如果主题或样式表主题将以编程方式设置,这是可以接受的。

我应该创建任何链接吗?

谢谢 萨吉

i have a .skin file inside my app.themes folder. To access .css file from asp page we have to give link. but i couldn't find any thing on asp header to give link for .skin file.

<asp:TextBox SkinID="txtBox" ID="TextBox1" runat="server"></asp:TextBox>

i got the following error..
A SkinID has been specified but the page is not configured to use a page theme or stylesheet theme. This is acceptable if the theme or stylesheet theme will be set programmatically.

should i create any link?

thanks
saj

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

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

发布评论

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

评论(2

淡看悲欢离合 2024-10-06 06:45:40

应在页面的 Theme 属性上指定主题的名称(即 App_Themes 文件夹中包含皮肤文件的文件夹)。

在代码中:

Page.Theme = "MyTheme"

或在您的标记中:

<%@ Page Theme="MyTheme" .... %>

Should specify the name of the theme (ie the folder in your App_Themes folder that contains your skin file) on the Theme property of the Page.

In code:

Page.Theme = "MyTheme"

or in your markup:

<%@ Page Theme="MyTheme" .... %>
战皆罪 2024-10-06 06:45:40

不要在任何皮肤文件中使用 ID="TextBox1"

Don't use ID="TextBox1" in any skin file

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