Tagged Questions

7
votes
2answers
4k views

ASP.NET Membership Provider - Reset Password Features - Email Confirmation and Password Change

Does anyone has a solution (sample code) for the following features: Create a randomGuid/Cryptographically strong random number Send a unique URL containing the random number to the user's email ...
7
votes
3answers
1k views

Resetting ASP.NET password - security issues?

I've seen various questions regarding this issue, but there are a couple of questions that haven't been asked. If the user forgets their password, I would like them to be able to reset it with only ...
3
votes
2answers
812 views

asp.net membership change password without knowing old one

Evaluting the method signature, it is required to know old password while changing it. membershipUser.ChangePassword(userWrapper.OldPassword, userWrapper.Password) Is there any way to change ...
3
votes
3answers
2k views

asp.net 3.5 password recovery control in an mvc app?

Can I use the asp.net 3.5 Password Recovery control in an MVC application? We need to provide password retrieval capability for our MVC app and I would like to use the password recovery control ...
2
votes
2answers
1k views

Some questions regarding implementing forgot password functionality in asp.net mvc

I want to implement a forgot-password feature in asp.net mvc that allows users to reset their password, and have some questions in this regard: Lets say that before allowing users to reset their ...
2
votes
3answers
913 views

User verification on the reset password page

I am writing a password-reset page for my website. Here's my idea: a. User click the "forgot password" link on the login page b. Redirect to my password-reset page c. User enter his email address ...
1
vote
1answer
206 views

What approach could/should I take to change a password bearing in mind the requirements I have to follow?

I need to provide functionality to reset a users password on our asp.net web site. For this to be accomplished the user must provide the email address they registered with and the functionality ...
1
vote
1answer
1k views

Forgot password using ASP.Net membership provider?

Is it possible to implement a "forgot password" using ASP.Net membership provider? Any sample link is appreciated. Thanks
1
vote
3answers
432 views

Validating User Oracle Passwords for Reset application

This is a mix of programming and sysadmin but I decided its more of a programming issue. Currently working building a password management web application for managing Oracle user accounts (C#). The ...
1
vote
2answers
3k views

How to not use ASP.Net Membership Security Question and Answer for custom password recovery?

I don't want to have the security question and answer feature that ASP.Net Membership Provider gives, but I DO want to enable a lost/forgotten password page. This page would be where a user would ...
0
votes
2answers
859 views

send the new password - Asp.net - using gmail ( smtp.gmail.com )

I've gone through all helps and all forums., but none of them have helped me. Here is my problem Developing a site on localhost using ASP.NET 3.5 I want to provide 'forgot password' functionality ...
0
votes
6answers
960 views

Problem when password resetting in ASP.NET

I am developing an app which I should design a page for users who forget passwords and send email to them the new passwords. I am using ASP.NET Membership and password format should be hashed. My ...