Regarding Login Control
hi i want to know how to verify the login parameters using asp.net with C#. i have tried this but i was unable to find the solution. please help me regardnig this Question.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Amit ChoudharyPosted Jul 6, 2010, 9:05 AM
There are two ways to do it..
1. you can create your own custom tables and classes to create, verify and for other tasks like change password, forget password etc.
you have to manage every thing by your code. and have to use your own custom controls.
2. you can use Membership provider classes with aspnetsqlmembership provider for this. if you go this way you will be able to use the login controls provided in Control Tools comes with visual studio. it needs only study of provided classes and schema with configuration settings.
set them and see the inbuilt support of .Net also it'll save your lot of time.
choose any one which suites you.
Please mark as answer if it helps you.