Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 asp.net、c# 构建一个小型网站,并连接到数据库并尝试在标签中显示用户名。我怎么能做到这一点。
这将为您获取当前经过身份验证的用户的用户名。我认为你应该弄清楚如何在标签中获得它......
System.Web.HttpContext.Current.User.Identity.Name;
这将取决于您的用户如何进行身份验证,但从 System.Web.HttpContext.Current.User 开始。