I am developing web site on umbraco and need to store additional information about member(cmsMember). How can I do that? Is there a way to extend umbraco member without changing membership provider?
I would like to do something similar to this
var datatype = new DataTypeDefinition("varchar");
var type = new PropertyType(datatype);
var property = new Property(type);
property.Value = myAdditionalInfo;
member.Properties.Add(property);
memberService.Save(member, false);
I am getting more and more dissapointed with umbraco.
What I need is to store in database password reset token. Therefore I cannot add this property to backoffice as it will compromise security. What I am trying to do is add data in some storage like AdditionalData. But this does not work for unknown reasons. Is it possible to store data in AdditionalData?
Extend umbraco member
Hi guys,
I am developing web site on umbraco and need to store additional information about member(cmsMember). How can I do that? Is there a way to extend umbraco member without changing membership provider?
I would like to do something similar to this
I am getting more and more dissapointed with umbraco.
Hi, aman
Yes, you may store extended properties for members in Umbraco. Head over to the Members area in the Umbraco back office.
You may:
Thanks for reply Eric!
Yes I know about this option.
What I need is to store in database password reset token. Therefore I cannot add this property to backoffice as it will compromise security. What I am trying to do is add data in some storage like
AdditionalData
. But this does not work for unknown reasons. Is it possible to store data in AdditionalData?Perhaps building a custom property type for dealing with password protection with the input type="password"?
Then by clicking a reset button it would end up calling one of your methods in the backend which handles the logics?
is working on a reply...