如何从aspx页面访问.skin文件
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
应在页面的 Theme 属性上指定主题的名称(即 App_Themes 文件夹中包含皮肤文件的文件夹)。
在代码中:
或在您的标记中:
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:
or in your markup:
不要在任何皮肤文件中使用 ID="TextBox1"
Don't use ID="TextBox1" in any skin file