存储记录器信息asp.net

时间:2010-09-25 06:13:36

标签: asp.net

我正在构建有三种类型用户的网站。管理员,商家和助理用户。 存储信息的位置,以便我的应用程序知道哪个用户已登录(无论是管理员还是辅助用户或商家)

谢谢

2 个答案:

答案 0 :(得分:2)

您想要查看ASP.NET MembershipRoles

答案 1 :(得分:0)

        string path = DateTime.Today.ToString("dd-mm-yy") + ".txt";
        if (!File.Exists(System.Web.HttpContext.Current.Server.MapPath(path)))
        {
            File.Create(System.Web.HttpContext.Current.Server.MapPath(path)).Close();
        }
        using (StreamWriter w = File.AppendText(System.Web.HttpContext.Current.Server.MapPath(path)))
        {
            w.WriteLine("\r\nLog Entry : ");
            w.WriteLine("Membership.GetUser().UserName);
            w.Flush();
            w.Close();
        }