Tagged Questions
3
votes
1answer
288 views
Change Password on next Logon for Forms Login with AdMembership providier
I'm doing asp.net, using FormsAuthentication with the AdMembership proivder.
I'm having to manually write a "change password on next logon" screen because it's not nativley supported in the provider.
...
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 ...
2
votes
2answers
321 views
Old password still working after password change in asp.net membership
Am using ASP.NET membership authentication in a small website and i just noticed some thing funny during testing. Am trying to enable user to change their login password any time they wish, i dragged ...
1
vote
0answers
110 views
ChangePasswordFailure .. ChangePassword control
Every time i try to change a password to any other password. It invalidates my passwords (the new password, and confirmed password).. and then the ChangePasswordFailureText appears.
I dealt with that ...
1
vote
2answers
2k views
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 ChangePasswordTemplate and ...
1
vote
1answer
710 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 the method ...
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
297 views
DirectoryEntry can not ChangePassword due to Domain Controller. Help?
This is suppose to be a basic password change method using DirectoryServices in ASP.NET.
The code:
String path = ConfigurationManager.AppSettings["LDAPServer"] + myDN;
DirectoryEntry de = new ...
0
votes
1answer
220 views
Asp.net Change Password Control
In my asp.net Web app. I have a change password form that is not working properly. I set the LoginEvent cancel to false when it has changed. It changes ok, but the control thinks that it fails. Is ...
0
votes
1answer
216 views
Membership ChangePassword (hashed) match current password against old password field
I am implementing a system where the user can Reset their password if they have forgotten it.
Once it is reset I want to give them the option of changing the password so that it will be something ...
0
votes
1answer
209 views
Running client-side code after ASP ChangePassword control has finished
I've got a .net ChangePassword control inside a DevExpress ASPxPopupControl. I'd like to automatically close the Popup window after the password has been successfully changed - however, I can't see ...
0
votes
2answers
141 views
In c# how does one set the value of the AD property “pwdLastSet”
In c# how does one set the value of the AD property "pwdLastSet"
This is not working:
DateTime passwordLastSetTarg = System.DateTime.Now.AddHours( -25 );
var adDate = ...
0
votes
2answers
155 views
Ad Asp.Net Changing Passwords
We're using ASP.NET MVC and AdMembership privider for login, and for various reasons had to implement our own "Change Password on next Login" funtionality.
We also have a nist requirement of not ...
0
votes
1answer
35 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
Expiration date of guid ...