在我的 ContentPlaceHolder 中使用链接 href 时出错
我在我的项目中使用 MasterPage...
这是我需要放置在 Dedault.aspx 页面的 ContentPlaceHolder 中的链接
<link href="jquery/imagebox/imagebox.css" rel="stylesheet" />
,但我收到错误“元素链接不能嵌套在元素 td 中”
知道该怎么办吗?
I am using a MasterPage in my project...
This this the link i need to place inside my ContentPlaceHolder of my Dedault.aspx page
<link href="jquery/imagebox/imagebox.css" rel="stylesheet" />
But i get a error "Element link cannot be nested within element td"
Any idea what to do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只能将样式表链接放置在文档的标题中。 以下是如何从 ContentPlaceholder 执行此操作的链接:
http://www.odetocode.com/articles /450.aspx
引用:
You can only place stylesheet links in the header of the document. Here's a link how to do that from a ContentPlaceholder:
http://www.odetocode.com/articles/450.aspx
Quote: