Hi ..
I am having signup page that contains username,pwd,confpwd,Email,Address and one save button .
when user enter his details and press save button it should save details in database.
i have done upto here.But my problem is:
if Email Entered already Exsists in database then it should display a message that Email already exists in Database.
For this what i have to write Code .Pls send me the Code .
i want to display user in the FrontEnd Label.
Thank you..
PHANI NADIGADDAPosted Feb 19, 2007, 5:50 PM
Check Whether EMAIL exists before you insert a record in your stored procedure. If exists then RETURN some integer and then get @RETURN_VALUE , direction OUTPUT in your .cs or .vb code. Check if RETURN value is some integer then display EMAIL ID is already exists.
ALL THE BEST.