Using the ChangePassword Control : ChangePassword « Authentication Authorization « ASP.NET Tutorial






<%@ 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>








21.7.ChangePassword
21.7.1.Using the ChangePassword Control
21.7.2.Sending a Change Password Email
21.7.3.Using Templates with the ChangePassword Control