Using the PasswordRecovery control : PasswordRecovery « Login Security « ASP.Net






Using the PasswordRecovery control

 
<%@ Page Language="VB" %>
    
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Getting Your Password</title>
</head>
<body>
    <form id="form1" runat="server">
        <asp:PasswordRecovery ID="PasswordRecovery1" Runat="server">
            <MailDefinition From="joe@yahoo.com">
            </MailDefinition>
        </asp:PasswordRecovery>
    </form>
</body>
</html>
 

 








Related examples in the same category

1.Recovers a forgotten password and emails it back to the user