What you want to see on DotNetFunda.com ?
Go to DotNetFunda.com
Twitter TwitterLinkedIn
YouTubeGoogle
 Online : 5269 |  Welcome, Guest!   Register  Login
Home > Tutorials > ASP.NET Tutorials > PasswordRecovery

Silverlight Tutorials | Report a Bug in the Tutorial
Found interesting? Add this to:


asp:PasswordRecovery control
PasswordRecovery control is a ready to use control to help user to recover their password, if they forget.
 
PasswordRecovery control is a ready to use control to help user to recover their password, if they forget. It has separate templates for each view that can be easily customized. Internally, When it is rendered on the page, it is implemented through <table></table> HTML tag.

Its properties like BackColor, ForeColor, BorderColor, BorderStyle, BorderWidth, Height etc. are implemented through style properites of <table, tr, td/> tag.

PasswordRecovery control uses Membership service to retrieve or reset user's password.
DEMO : PasswordRecovery Show Source Code
NOTE: This example is not working as this control users in-built Membership and Role Manager Providers,
We will try to cover membership provider tutorials in future.
Forgot Your Password?
Enter your User Name to receive your password.
 
 
                    
// PasswordRecovery Control ////////////////////////////          
<asp:PasswordRecovery ID="PasswordRecovery1" runat="server" BackColor="#F7F6F3" BorderColor="#E6E2D8" BorderPadding="4" BorderStyle="Solid" BorderWidth="1px" Font-Names="Verdana" Font-Size="0.8em">
        <InstructionTextStyle Font-Italic="True" ForeColor="Black" />
        <SuccessTextStyle Font-Bold="True" ForeColor="#5D7B9D" />
        <TextBoxStyle Font-Size="0.8em" />
        <TitleTextStyle BackColor="#5D7B9D" Font-Bold="True" Font-Size="0.9em" ForeColor="White" />
        <SubmitButtonStyle BackColor="#FFFBFF" BorderColor="#CCCCCC" BorderStyle="Solid"
            BorderWidth="1px" Font-Names="Verdana" Font-Size="0.8em" ForeColor="#284775" />
    </asp:PasswordRecovery>


                    





About Us | Contact Us | The Team | Advertise | Software Development | Write for us | Testimonials | Privacy Policy | Terms of Use | Link Exchange | Members | Go Top
General Notice: If you find plagiarised (copied) contents on this page, please let us know the original source along with your correct email id (to communicate) for further action.
Copyright © DotNetFunda.Com. All Rights Reserved. Copying or mimicking the site design and layout is prohibited. Logos, company names used here if any are only for reference purposes and they may be respective owner's right or trademarks. | 5/24/2013 7:19:16 PM