Jonathon Gohan
Jonathon Gohan

Reputation: 67

How to Authenticate a user based on email id and password in asp.net

I just wanted to authenticate a user based on the email id and the password.

For ex: if he enters the username as "[email protected]" and password as "password". I need to authenticate the above details. Is it possible. I just wanted to authenticate the user and not to send a mail. I came to know that, if we try to send a mail with wrong password, we get exception which we can catch and process it accordingly.

But is there any we can authenticate without sending a mail.

Thanks in advance Jonathon

Upvotes: 1

Views: 92

Answers (1)

Rahul Tripathi
Rahul Tripathi

Reputation: 172608

You may certainly like yo check How to: Implement Simple Forms Authentication

Upvotes: 1

Related Questions