经授权在母版页中引用 JavaScript 和 CSS
我正在 asp.net 中进行开发,并且使用不同的 JavaScript 和 CSS 文件。
- 我有一个母版页“masterpage1”,
- 此文件夹中有一个文件夹 admin
- 我有一个名为 masterpageadmin 的母版页,它继承自 masterpage1
- ,文件夹 admin 中的所有 aspx 文件都继承自 masterpageadmin,
- 只有“admin”角色可以访问 masterpageadmin 和admin 文件夹中的 aspx 文件
我的问题: 我应该如何在我的 masterpage1 中引用我的 JavaScript 和 CSS,以便 admin 文件夹中的 aspx 文件可以使用它们。
干杯
i am developing in asp.net and i use different JavaScript and CSS files.
- i have a master page "masterpage1"
- a folder admin
- in this folder i have a masterpage, called masterpageadmin which inherits from the masterpage1
- and all aspx files in the folder admin inherits from the masterpageadmin
- only the "admin" role can acess to the masterpageadmin and aspx files in the folder admin
My question:
how should i reference in my masterpage1 my JavaScript and CSS, so that the aspx files in the admin folder can use them.
Cheers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ASP.NET 不费心去保护任何非 ASP.NET 文件。
这包括CSS、JS、HTML、JPG、PNG……
换句话说,人们不用担心保护CSS和JS。
ASP.NET doesn't bother to protect any non-ASP.NET files.
This includes CSS, JS, HTML, JPG, PNG, ...
In otherwords, one doesn't worry about protecting CSS and JS.
在母版页面中引用 CSS 或 JS 文件时,通常需要使用绝对路径而不是相对文件路径。
例如:
是相对路径,用户浏览器将在 ASPX 文件所在的任何目录中查找名为“css”的文件夹。 是
绝对路径,用户浏览器将始终在 ASPX 文件所在的目录中查找名为“css”的文件夹网站的根目录,可能与 Web 应用程序的根目录不同。
这是关于 ASP.Net 中路径的精彩讨论
http://www.west-wind.com/weblog/posts/132081.aspx
When referencing a CSS or JS file in a mater page, It is usually necessary to use absolute paths instead of relative file path.
For example:
Is a relative path, the users browser will look for a folder called "css" in whatever directory the ASPX file is located in.
Is an absolute path, the users browser will always look for a folder called "css" in the root of the web site, which may be different than the root of the web application.
Here is a great discussion on paths in ASP.Net
http://www.west-wind.com/weblog/posts/132081.aspx