MVC3 自定义会员提供商
我正在使用自定义成员资格提供程序的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的视图正在渲染,但您没有看到应用的样式,对吗?
因此,请检查您的页面并查看为脚本生成的路径,并验证该路径是否正确。听起来像是路由问题。
您是否使用以下方法来解析您的样式表?
根据您的浏览器,您需要调用开发人员工具 (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?
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.
好吧,终于我找到了解决方案。问题在于样式表所在的内容文件夹的权限。
在配置文件中添加对该文件夹的所有用户的授权解决了该问题。
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.