i just followed the mike blog of authenticating new members before activating them? the url is
http://umbraco.miketaylor.eu/2010/08/29/
its work fine and my only query is how i can check the if user is
allready exits and again he want to enter registration form i need to
display the message user is allready exits.
iam using the above
code to save in the database and send a link to the user to activate.
its work fine. but i how to check if user is allready registered. what i
need to modify in code.
I would check for a user account by using the .NET membership library located in using System.Web.Security; Also, I have code for adding custom properties to the Umbraco Membership backend in this code. Please note that I do have some custom code in there, such as Message.Add(), which is part of a website library that I created to show messages to the end user on the site (not the backend).
Registration page for user?
i just followed the mike blog of authenticating new members before activating them? the url is
http://umbraco.miketaylor.eu/2010/08/29/ its work fine and my only query is how i can check the if user is allready exits and again he want to enter registration form i need to display the message user is allready exits.
iam using the above code to save in the database and send a link to the user to activate. its work fine. but i how to check if user is allready registered. what i need to modify in code.
its works like a charm and i dont how to check if the user is allready exits in that case i need to display a message user is allready registered.
I would check for a user account by using the .NET membership library located in using System.Web.Security; Also, I have code for adding custom properties to the Umbraco Membership backend in this code. Please note that I do have some custom code in there, such as Message.Add(), which is part of a website library that I created to show messages to the end user on the site (not the backend).
Also, the following Is depreciated, but continues to work. I'm not sure of the alternate to do this.
hi Javier Barrera
sorry for late reply, thanks i did the same way. it work finally.
Adarsh
cheers!!
is working on a reply...