I have an asp.net password recovery control. Currently at the last step that is success part, system will send an email to the user for a new password. But I don't want do it, what I want is to reset the password by myself. I am thinking to input a new
passord in a textbox.
I know that data flow can not be changed. But how to implement it? Thanks.
zhshqzyc
Member
416 Points
517 Posts
Customize success part in a password recovery control
Apr 18, 2012 12:14 PM|LINK
I have an asp.net password recovery control. Currently at the last step that is success part, system will send an email to the user for a new password. But I don't want do it, what I want is to reset the password by myself. I am thinking to input a new passord in a textbox.
I know that data flow can not be changed. But how to implement it? Thanks.
kimkosta06
Member
270 Points
50 Posts
Re: Customize success part in a password recovery control
Apr 18, 2012 01:19 PM|LINK
Instead of mail sending code you can manually change password reset coding. by putting design flow as required.
zhshqzyc
Member
416 Points
517 Posts
Re: Customize success part in a password recovery control
Apr 18, 2012 01:28 PM|LINK
But there is no email sending code, how can I change it?
<asp:PasswordRecovery ID="PasswordRecovery1" runat="server" BorderStyle="Solid" BorderWidth="1px" BackColor="#F7F7DE" Font-Size="10pt" Font-Names="Verdana" BorderColor="#CCCC99" HelpPageText="Need help? Please contact us at 1-000-000-0000."> <SuccessTemplate> <table cellpadding="1" cellspacing="0" style="border-collapse:collapse;"> <tr> <td> <table cellpadding="0"> <tr> <td> Your password has been sent to you.</td> </tr> </table> </td> </tr> </table> </SuccessTemplate> </asp:PasswordRecovery>