Respected Experts
1)I need to do registration form in ASP.NET that I can do
2)when user submit form a link is to be send in users mail on mentioned mail address in registration form.
3)when user will open his mail and click on that click database will be
reflected and then only he can be allowed get sign in as valid user in
web site
Task no 2 and 3 I am not getting. Please help
Also In my company I have to develop website as magicbricks.com please suggest me what type study I should do to do that or what points should I learn in ASP.NET to get a good start.
Thanks
Loading
Krishna GaradPosted Jan 27, 2011, 4:43 AM
You can create two field in your registration table as ActivationCode and Status of account as Activated or NotActivated. While Sending mail to user send full link of that page with attached activation code as querystring when user click on that mail change status of registration and while sign take condition in mind as status of an account.
You can sent link in body like
http://www.yoursite.com/youractivationpage.aspx?_activationcode=somecodehere.
or you can put like
Suthish NairPosted Jan 30, 2011, 10:17 AM
Mayur GujrathiPosted Jan 30, 2011, 9:57 AM
What is "some code" in above thread
Suthish NairPosted Jan 27, 2011, 11:05 AM
There are lot of things from asp.net you need to learn before starting this project.
I think you need to learn asp.net or must have an idea what you up to.
Start learn SDLC, Use Cases. This will helps you to give a clear picture about you project, its design, were to start etc.
1. registration form ==> gather basic user information, create user table with an extra column like "Active". Set default value as "N".
check Our recommended articles section, how to send mail. If any doubts, create a new forum thread we are ready to
help you.
2,3. As above reply, you can avoid activation code. Another way is Captcha, use and validate the email address and update the above column to "Y".
So you need a registration form, validation .aspx.