以编程方式将样式表和 javascript 引用添加到 ASP.NET 母版页
我正在使用 Lightbox,但我只希望对样式表和 javascript 文件的引用位于网站某一页面(使用 Lightbox 的页面)的母版页标题中。如何以编程方式在页面加载中添加对样式表和 javascript 文件的引用?
样式表是“css”文件夹,三个 javascript 文件是“js”文件夹
I'm using Lightbox but i only want the references to the stylesheet and javascript files to be in the masterpage header on one page on the site (the page that uses lightbox). how do I programmatically add references to the stylesheet and javascript files in the page load?
the stylesheet is the 'css' folder and the three javascript files are a 'js' folder
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试...
try...
将两个占位符(“JsPlaceholder”和“CSSPlaceholder”)添加到母版页上的标题并调用这些方法:
Add two placeholders ("JsPlaceholder" and "CSSPlaceholder") to your header on master page and call those methods:
尝试(在 C# 中,但你应该明白):
Try (in C# but you should get the idea):
您可以这样做,
将其添加到您的标头中:
并从您的代码隐藏集中
您还应该注意,通常您希望在页面上保留尽可能多的 html,而不是将其放在代码隐藏中,这样设计人员就可以轻松地制作变化
you can do it like this
added this to your header:
and from your codebehind set
You should also note that normally you want to keep as much html on the page instead of having it in your codebehind so it will be easy for the designer to make changes