Prevent duplicate mobile number in asp:CreateUserWizard

314 Views Asked by At

How can I check for a duplicate mobile number before user get created? something like Email Duplication Prevention by itself. I need an event that runs after clicking "create user" button and before the user got created.

1

There are 1 best solutions below

0
On

You can use the CreatingUser event. This event occurs before creating user on database, and contains LoginCancelEventArgs in its parameter.

In event code, check the entered mobile number exist or not and set the Cancel property to true or false.