Mega Code Archive

 
Categories / ASP.Net Tutorial / Authentication Authorization
 

Using the ChangePassword Control

<%@ Page Language="C#" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head id="Head1" runat="server">     <title>Show ChangePassword</title> </head> <body>     <form id="form1" runat="server">     <div>     <asp:LoginName ID="LoginName1" runat="server" />     <asp:ChangePassword         id="ChangePassword1"         InstructionText="Complete this form to create a new password."         DisplayUserName="true"         ContinueDestinationPageUrl="~/Default.aspx"         CancelDestinationPageUrl="~/Default.aspx"         Runat="server" />     </div>     </form> </body> </html>