I try to make member signup form. But have problem with member profile properties saving.
I'm use code like this:
var user = System.Web.Security.Membership.CreateUser(userform.Email, userform.Password, userform.Email); var profile = ProfileBase.Create(user.UserName); profile["info_lastName"] = "test"; profile.Save();
I'm not a backend developer so I'm not sure about the code shown above...I'm just wondering if you're using the current beta release for a production or if you're just playing around with the new API?
I am already using Umbraco 6.0 RC for a website production. But since I planning to continue development of this site, I would like to use newest version of API.
It seems that there is a problem in Umbraco 6.0 RC, because the same code works fine on 4.11.3.1 =\
Member Profile properties saving problem
Hi. Sorry for my English.
I'm usgin Umbraco 6.0 RC
I try to make member signup form. But have problem with member profile properties saving.
I'm use code like this:
But this dosen't work, field "info_lastName" stay empty.
Any ideas? Thanks!
Hi z4kk
I'm not a backend developer so I'm not sure about the code shown above...I'm just wondering if you're using the current beta release for a production or if you're just playing around with the new API?
The above might be a bug and if so it should be reported at the issue tracker http://issues.umbraco.org/issues/U4
If you're developing a real site I'll advise you to wait untill v6 is released in a stable release and base your work on v4 untill then.
I hope some of the other bright guys in here that knows more about the API than I do will chime in on the code example above.
/Jan
Thanks for your reply.
I am already using Umbraco 6.0 RC for a website production. But since I planning to continue development of this site, I would like to use newest version of API.
It seems that there is a problem in Umbraco 6.0 RC, because the same code works fine on 4.11.3.1 =\
is working on a reply...