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 Pass开发者_如何学Cword functionality into a custom module?
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.
精彩评论