MVC3 自定义会员提供商

发布于 2024-12-04 10:40:34 字数 134 浏览 0 评论 0原文

我正在使用自定义成员资格提供程序的 MVC3 应用程序中工作。问题是当我显示登录页面时,由于某种原因,该页面既不加载样式表,也不加载 JavaScript。 有什么我需要添加而我遗漏的吗? Global.asax 或配置文件中有什么内容吗? 提前致谢。

I'm working in a MVC3 application using Custom Membership Provider. The problem is when I get the display of the login page, for some reason the page doesn't load the style sheet neither the javascripts.
Is something that I need to add and I'm missing? Something on the Global.asax or the config file?
Thanks in advance.

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

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

发布评论

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

评论(2

太阳男子 2024-12-11 10:40:34

您的视图正在渲染,但您没有看到应用的样式,对吗?

因此,请检查您的页面并查看为脚本生成的路径,并验证该路径是否正确。听起来像是路由问题。

您是否使用以下方法来解析您的样式表?

<link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" />

根据您的浏览器,您需要调用开发人员工具 (IE/Chrome) 或 Firebug (FireFox) 并查看正在发出哪些网络请求。

希望这有帮助。

Your view is being rendered but you're not seeing the styles applied, correct?

So, check your page and see what path is being generated for the scripts, and verify that the path is correct. It sounds like a routing issue.

Are you using the following method to resolve your stylesheet?

<link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" />

Depending on your browser, you'll want to invoke developer tools (IE/Chrome) or Firebug (FireFox) and see what network requests are being made.

Hope this helps.

粉红×色少女 2024-12-11 10:40:34

好吧,终于我找到了解决方案。问题在于样式表所在的内容文件夹的权限。
在配置文件中添加对该文件夹的所有用户的授权解决了该问题。

Well, finally I get the solution. The problem was the permission on the Content folder, where the style sheet resides.
Adding authorization to all users for that folder on the config file fixed the problem.

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