我正在使用 ASP.NET 4.0 WebApplication 项目
以下将用户名保存到我的 current.profile
System.Web.HttpContext.Current.Profile["UserName"] = userName
我想向所有用户添加一个名为 Company 的新配置文件,其值为“MyCompany”。它应该是这样的:
for all users....
{
System.Web.HttpContext["SpecificUser"].Profile["Company"] = "MyCompany"
}
我该怎么做?