Хотите использовать " имя " из таблицы сведений о пользователях, а не имя пользователя из таблицы aspnetusers в ASP.NET личность сеанса в поле информация в приложении веб-форм
I have used ASP.NET Identity for Login and the table by default used in this is AspNetUsers. I have created separate UserInfo table with FirstName, LastName and UserId columns where UserId is the unique Identifier and referenced to AspNetUsers Id column table. Now, I want to display FirstName from UserInfo table instead of UserName from AspNetUsers.
Что я уже пробовал:
<li><a runat="server" href="~/Account/Manage" title="Manage your account">Hi, <%: Context.User.Identity.GetUserName() %></a></li>
Bryian Tan
это .net core ?
Rajeshyadav12
Никакого Брайана. Это ASP.NET веб-форма приложения.