这是我编辑当前登录用户的配置文件变量的方法:
Profile.variablename = "this";
我怎样才能做同样的事情,但是指定我想要更改其配置文件变量的用户名,而不仅仅是当前登录的用户?
像Profile.variablename.("username", "this")
这样的东西就是我正在寻找的东西。
我正在使用C#asp.net,感谢您的帮助。
答案 0 :(得分:1)
您可以使用Profile.GetProfile()
方法检索特定的个人资料:
ProfileCommon profile = Profile.GetProfile(username);
profile.variablename = "this";