经授权在母版页中引用 JavaScript 和 CSS

发布于 2024-10-20 04:44:39 字数 393 浏览 1 评论 0原文

我正在 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 技术交流群。

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

发布评论

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

评论(2

幽蝶幻影 2024-10-27 04:44:39

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.

椵侞 2024-10-27 04:44:39

在母版页面中引用 CSS 或 JS 文件时,通常需要使用绝对路径而不是相对文件路径。

例如:

<link href="css/mystyles.css" rel="stylesheet" type="text/css" />  

是相对路径,用户浏览器将在 ASPX 文件所在的任何目录中查找名为“css”的文件夹。 是

<link href="/css/mystyles.css" rel="stylesheet" type="text/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:

<link href="css/mystyles.css" rel="stylesheet" type="text/css" />  

Is a relative path, the users browser will look for a folder called "css" in whatever directory the ASPX file is located in.

<link href="/css/mystyles.css" rel="stylesheet" type="text/css" />  

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

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