CSS 和 JS 文件加载

发布于 2024-12-11 09:36:24 字数 156 浏览 4 评论 0原文

我们的 Web 应用程序部署在由 NLB 控制的 2 个 WFE 服务器上

两台服务器在 GAC 中安装了相同的 DLL,也安装了相同的 Web 文件,在服务器 A 上打开网站时,它工作正常,但在服务器 B 上,没有样式和 JS 文件已加载。

会不会是IIS的问题?

Our web application is deployed over 2 WFE servers controlled by an NLB

Both servers have the same DLLS installed in the GAC also same web files, when opening the website at server A it works fine but in case of server B no styles and JS files are loaded.

Could it be an issue caused by IIS?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

余厌 2024-12-18 09:36:24

问题似乎出在 IIS 下创建的网站,我已删除并创建了它。现在工作正常了。

谢谢

Well the issue seemed to be with the web site created under IIS, I have removed and created it . it works fine now .

thanks

红衣飘飘貌似仙 2024-12-18 09:36:24

检查授予 APP POOl 用户的权限

Check permissions given to the APP POOl user

猫瑾少女 2024-12-18 09:36:24

当您将文件上传到服务器时,它可能未引用正确的路径。
因此,如果您更改 .css.js 文件的链接,它可能会起作用。

eg. <script src="Scripts/scripts.js" type="text/javascript"></script>
to <script src="http://www.yoursite.com/Scripts/scripts.js" type="text/javascript"></script>

When you upload the files to server, it may not reference to the correct path.
So it will be probobly work if you change the links of your .css and .js files.

eg. <script src="Scripts/scripts.js" type="text/javascript"></script>
to <script src="http://www.yoursite.com/Scripts/scripts.js" type="text/javascript"></script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文