gpt4 book ai didi

c# - 在 asp.net mvc 4 中获取登录用户的 ID

转载 作者:行者123 更新时间:2023-11-30 17:41:27 30 4
gpt4 key购买 nike

我正在使用 asp.net SimpleMembership。我试图在 ViewBag 中显示登录用户的 ID。出于某种原因,我得到了 ProvidedUserKey() 的 NULL。这是我的代码,

Controller

[HttpPost]
public ActionResult Login(ClientReg user)
{
if (ModelState.IsValid)
{
FormsAuthentication.SetAuthCookie(user.username, false);
return RedirectToAction("Index");
}
else
{
return RedirectToAction("Login");
}
}

[Authorize]
public ActionResult Index()
{
string userId = Membership.GetUser().ProviderUserKey.ToString(); //Null error in this line
ViewBag.UserId = userId;
return View();
}

查看

<div class="container">
@ViewBag.UserId
</div>

如何获取登录用户的id?

最佳答案

使用这个类而不是 Membership:

WebSecurity.GetUserId(User.Identity.Name);

Simple Membership 继承了 WebSecurity 实例,是为用户获取数据的更可靠的方式。

关于c# - 在 asp.net mvc 4 中获取登录用户的 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32934506/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com