Not sure about the change password control

  • Thread starter Thread starter John
  • Start date Start date
J

John

Hi

I am using the Change Password control which works fine and changes the
password. I have two problems;

1. After password has been changed, pressing continue goes no where. How can
I tell the control to go to page x at press of continue?

2. How can I tell the control to go to page y on press of cancel in the
first step?

Thanks

Regards
 
hi,

You can set the CancelDestinationPageUrl and ContinueDestinationPageUrl
properties of the change password control to acheive the same.

sample code as follows:

<asp:ChangePassword ID="ChangePassword1" runat="server"
CancelDestinationPageUrl="y.aspx" ContinueDestinationPageUrl="x.aspx">
</asp:ChangePassword>

regards,
Pradeep
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top