Tagged Questions

1
vote
2answers
132 views
+150

ChangePassword control and setting regular expression for new password

This seems like it should have a simple solution but I can't seem to find it. I'm using the ChangePassword control in an ASP.NET 2.0 application, using both the ChangePasswordTemp …
0
votes
1answer
21 views

Fields for reseting password

I am upgrading my reset password procedure of my webpage. What fields should i include in my SQL table? After searching all over the web i decided to add these goodies Guid Expi …
1
vote
1answer
120 views

In ASP.NET Webforms, ChangePassword: how do I set SuccessTemplate to visible after password’s been changed?

It does allow me to change the password but the view is reset to its original state. OnInit looks like this: changePassword.ChangingPassword += ChangePasswordButton_Click; and …
0
votes
1answer
88 views

JQuery Validator Updated Password

I have a form which have three fields Old Password New Password Confirm Password These fields are optional and only mandatory when user enter some text into New Password How c …
0
votes
2answers
563 views

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

Hi, 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 b …
2
votes
7answers
209 views

Optimum tempory password length for SHA hash

When creating a "forgotten password" mechanism, we might want to create a tempory password for the user which is stored using SHA1 (feel free to suggest other C# Cryptography mecha …
6
votes
6answers
583 views

Forgot Password: what is the best method of implementing a forgot password function?

I'm wondering what the best method is for creating a forgot password function on a website. I have seen quite a few out there, here are a few or combination of: passphrase questi …
3
votes
5answers
262 views

What is the best way to change a user-password remotely in Unix?

What is the best way to change a user-password remotely in Unix? This must be performed by the user, in a Web-app or Windows-App, without using SSH or any direct connection between …