vote up 1 vote down star

I want to change an existing user's profile without having to create a new profile for the user. For example: I have a user name Usr1 and I want to change only his age, how do I do that?

flag

80% accept rate
What technologies are you using? – Charles Conway Sep 19 at 12:45

3 Answers

vote up 1 vote down check

See this article for the full details. Be aware that in certain cases (see my comment to another answer), ProfileCommon is not generated.

In this case you need to revert to using ProfileBase:

ProfileBase profile = context.Profile;
DateTime dob= profile.GetPropertyValue("dob") as DateTime;
...
profile.SetPropertyValue("dob",dob);
link|flag
vote up 0 vote down

If you have a look at this article, it explains how to do it...

link|flag
If this is a web application (think Asp.net MVC) then ProfileCommon is not auto-generated, and you have to revert to the non-typesafe ProfileBase – spender Sep 19 at 12:07
vote up 0 vote down

When you are in the page you have the ProfileCommon class available to you for accessing the profile. The profilecommon class is automatically generated by asp.net from you web.config profile settings during compilation of the web project.

In case you want to use the profile from app_code folder, you will have to use the profilebase class. Profilecommon that is available in the page also derives from this class.

Profilebase can be access like this

HttpContext.Profile or HttpContext.Current.Profile

To read a profile value you need to do the following

HttpContext.Profile.GetPropertyValue("propertyName");

To write a value to the profile you need to write

HttpContext.Profile.SetPropertyValue("propertyName", "propertyValue");
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.