我在我的 ASP.net MVC 网站中更改了 MembershipProvider,现在登录页面的样式表没有被正确引用。如果这可能是原因,下面是我的 web.config 中表单标签的副本。除了名称和超时属性之外,它看起来与新项目生成的相同。
<authentication mode="Forms">
<forms loginUrl="~/Account/Login" name=".ADAuthCookie" timeout="10" />
</authentication>
当我现在访问该页面时,CSS 的链接标记如下所示:
<link href="../Content/Site.css" rel="stylesheet" type="text/css" />
什么时候应该是这样的:
<link href="../../Content/Site.css" rel="stylesheet" type="text/css" />