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

HomeHomeUsing DNN Platf...Using DNN Platf...Administration ...Administration ...custom profile fields - create user in c#custom profile fields - create user in c#
Previous
 
Next
New Post
8/27/2010 10:42 PM
 
I am creating DNN users from a code behind in C# as shown below.

I have used the admin>manage users>manage profile > add new profile property tool in the DNN admin portal to create a custom profile property called CompanyName.

I am getting an error when I try to create a user with this field.
The error, and then the code:

Compiler Error Message: CS1061: 'DotNetNuke.Entities.Users.UserProfile' does not contain a definition for 'CompanyName' and no extension method 'CompanyName' accepting a first argument of type 'DotNetNuke.Entities.Users.UserProfile' could be found (are you missing a using directive or an assembly reference?)

Source Error:

 

Line 31:             oUser.Profile.FirstName = "scott";  
Line 32:             oUser.Profile.LastName = "beveridge";
Line 33: oUser.Profile.CompanyName = "SMB Nation";
Line 34: //oUser.Profile.Cell = "123122";
Line 35:             oUser.Membership.Approved = true;
 


using System;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;


namespace smbPages
{
    public class SmbSplash : Page
    {
        public Label Label1;
        public void Page_Load()
        {
           DotNetNuke.Entities.Users.UserInfo oUser = new DotNetNuke.Entities.Users.UserInfo();
           
            //oUser.PortalID = this.PortalId;  
            oUser.PortalID = 0;//DotNetNuke.Entities.Portals.PortalController.GetCurrentPortalSettings.PortalId;


            oUser.IsSuperUser = false;  
            oUser.FirstName = "xx";  
            oUser.LastName = "xxx";  
            oUser.Email = "xxx";  
            oUser.Username = "scotttest5";  
            oUser.DisplayName = "xxx";


            //oUser.Profile.PreferredLocale = DotNetNuke.Entities.Portals.PortalSettings.DefaultLanguage;  
            //oUser.Profile.TimeZone = PortalSettings.TimeZoneOffset;  
            oUser.Profile.InitialiseProfile(0);
            oUser.Profile.FirstName = "xxx";  
            oUser.Profile.LastName = "xxx";
oUser.Profile.CompanyName = "xxx";
//oUser.Profile.Cell = "123122";
            oUser.Membership.Approved = true;
            oUser.Membership.CreatedDate = System.DateTime.Now;
            oUser.Membership.IsOnLine = false;
            oUser.Membership.Password = "letmein";
           
           
           
                DotNetNuke.Entities.Users.UserController.CreateUser(ref oUser);//)
            {
                //Take Success Action
             //   Label1.Text = "User Created";
            }
           // else
            {
            //    Label1.Text = "Error.";
            }
        }
    }
}
 
New Post
8/28/2010 3:02 AM
 
If you didn't create the property on the table e.g. add it on the portals profile proberty or with a sql script to the profile data table it could not be saved. 
 
Previous
 
Next
HomeHomeUsing DNN Platf...Using DNN Platf...Administration ...Administration ...custom profile fields - create user in c#custom profile fields - create user in c#


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