我公司的一些开发人员在开发内部系统时遇到了问题。在下面的代码段中,应为winID分配当前系统的用户ID。相反,它被分配给别人的ID,显然是随机的。有什么建议吗?
public partial class _Default : System.Web.UI.Page
{
protected void Page_PreInit(object sender, EventArgs e)
{
Page.Theme = "MasterTheme1";
if (Session["UserName"] == null)
{
using (((WindowsIdentity)HttpContext.Current.User.Identity).Impersonate())
{
WindowsIdentity winID = System.Security.Principal.WindowsIdentity.GetCurrent();
Session["UserName"] = winID.Name;
}
}
Response.Redirect("MainDB_Login.aspx");
}
protected void Page_Load(object sender, EventArgs e)
//Snip
}
答案 0 :(得分:0)
可能在适当位置缓存(浏览器或服务器)?