how can i customize User Registration form

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
14 years ago
hi,

I want to add some extra fields into the customer registration as user attributes, how can i do that

i've added into the CreateUserWizardStep and also changed the codebehind like follow


TextBox txt1 = (TextBox)CreateUserWizardStep1.ContentTemplateContainer.FindControl("txt1");
            TextBox txt2 = (TextBox)CreateUserWizardStep1.ContentTemplateContainer.FindControl("txt2");

customer.option1 = txt1.Text;
            customer.option2 = txt2.Text;


and i've also added custom properties into the customer.cs file

but still faild to save into the customerAttributes table
14 years ago
I had the same question. It's not simple, but it can be done. This topic answered the question for me.

https://www.nopcommerce.com/Boards/Topic.aspx?TopicID=1157

Good Luck!
14 years ago
thanks dear,


that's nice and helped a lot.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.