标签: jquery ajax asp.net-mvc asp.net-identity
为什么没有User.Identity.IsAuthenticated在使用ajax加载的页面上工作?
User.Identity.IsAuthenticated
在我看来有这段代码:
@if (User.Identity.IsAuthenticated) { ... } else { ... }
但是当使用ajax @if (User.Identity.IsAuthenticated)加载此视图/控制器时,总是 false 并转到else部分。
@if (User.Identity.IsAuthenticated)
我不知道为什么会这样。
这个问题可能是由于加载了ajax吗?