Brian Webster
Brian Webster

Reputation: 30855

DotNetNuke 5.6.2 - What is the best method to incorporate the default DNN Forgot Password functionality into a custom module?

What is the best way to incorporate this default Forgot Password functionality into a custom module?

enter image description here

Upvotes: 0

Views: 303

Answers (1)

mika
mika

Reputation: 6962

Clicking the "Forgot Password" LinkButton redirects the user to SendPassword.ascx user control:

Response.Redirect(NavigateURL("SendPassword"), True)

You can do the same in your custom module, or roll up your own password reset form. In the latter case, I would take a copy of SendPassword.ascx as a template.

Upvotes: 3

Related Questions