如何在指定用户时编辑用户的配置文件变量(来自web.config)?

时间:2010-09-24 20:11:58

标签: c# asp.net visual-studio

这是我编辑当前登录用户的配置文件变量的方法:
Profile.variablename = "this";

我怎样才能做同样的事情,但是指定我想要更改其配置文件变量的用户名,而不仅仅是当前登录的用户?

Profile.variablename.("username", "this")这样的东西就是我正在寻找的东西。

我正在使用C#asp.net,感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

您可以使用Profile.GetProfile()方法检索特定的个人资料:

ProfileCommon profile = Profile.GetProfile(username);
profile.variablename = "this";