Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeArchived Discus...Archived Discus...Developing Under Previous Versions of .NETDeveloping Under Previous Versions of .NETASP.Net 2.0ASP.Net 2.0Updating User DataUpdating User Data
Previous
 
Next
New Post
11/4/2006 8:58 PM
 
Hi there,

I'm trying to update user properties in C#. The code runs ok but the user data is not changed.

UserInfo user = UserController.GetUser(PortalId, EditingUserId, false);
                user.Username = txtUserName.Text;
                user.FirstName = txtName.Text;
                user.LastName = txtLastName.Text;
                user.DisplayName = txtDisplayName.Text;
                user.Email = txtEmail.Text;
                ////Profile Properties
                user.Profile.Street = txtAddress.Text;
               
                UserController.UpdateUser(PortalId, user);
                Response.Redirect(Globals.NavigateURL());

Any ideas?

Thanks in advance
 
New Post
11/5/2006 7:31 AM
 
First, you never check to see if the username is taken. This needs to be done to avoid conflict.

Chris Paterra

Get direct answers to your questions in the Community Exchange.
 
New Post
11/5/2006 10:24 AM
 

Thanks for the reply Crispy.

I need to check the username but my point is that the user details are never updated.

Am I missing something?

 

 
New Post
7/5/2010 4:32 AM
 

To Get Properties:

Dim oUserController As New DotNetNuke.Entities.Users.UserController
                Dim oUserInfo As UserInfo = UserController.GetCurrentUserInfo
                Dim oUserProfile As UserProfile = oUserInfo.Profile
 
                Dim properties As ProfilePropertyDefinitionCollection = oUserProfile.ProfileProperties
                For Each profProperty As ProfilePropertyDefinition In properties
                    Select Case profProperty.PropertyName.ToLower
                        Case "telephone"
                            txtTelephone.Text = profProperty.PropertyValue
                        Case "cell"
                            txtMobile.Text = profProperty.PropertyValue
                        Case "postalcode"
                            txtPostalcode.Text = profProperty.PropertyValue
                        Case "city"
                            txtCity.Text = profProperty.PropertyValue
                        Case "street"
                            txtAddress.Text = profProperty.PropertyValue
                    End Select
                Next


To Set Properties:

Dim oUserController As New DotNetNuke.Entities.Users.UserController
                Dim oUserInfo As UserInfo = UserController.GetCurrentUserInfo
                Dim oUserProfile As UserProfile = oUserInfo.Profile
 
                Dim properties As ProfilePropertyDefinitionCollection = oUserProfile.ProfileProperties
                For Each profProperty As ProfilePropertyDefinition In properties
                    Select Case profProperty.PropertyName.ToLower
                        Case "telephone"
                            profProperty.PropertyValue = txtTelephone.Text
                        Case "cell"
                            profProperty.PropertyValue = txtMobile.Text
                        Case "postalcode"
                            profProperty.PropertyValue = txtPostalcode.Text
                        Case "city"
                            profProperty.PropertyValue = txtCity.Text
                        Case "street"
                            profProperty.PropertyValue = txtAddress.Text
                    End Select
                Next
                DotNetNuke.Entities.Profile.ProfileController.UpdateUserProfile(oUserInfo, properties)

 
Previous
 
Next
HomeHomeArchived Discus...Archived Discus...Developing Under Previous Versions of .NETDeveloping Under Previous Versions of .NETASP.Net 2.0ASP.Net 2.0Updating User DataUpdating User Data


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out