Hi,
Can someone recommend what is the easiest way to implement password change for extranet user in custom solution?
Developer forum
E-mail notifications
Password change
Posted on 23/11/2009 12:01:37
Replies
Posted on 25/11/2009 08:41:26
Hi
Could you please specify what you mean?
Do you want the user to be able to change password in frontend?
Do you want custom code to change passwords? And when?
- Lasse
Could you please specify what you mean?
Do you want the user to be able to change password in frontend?
Do you want custom code to change passwords? And when?
- Lasse
Posted on 25/11/2009 12:32:31
Hi,
Yes, I would like to implement a posibility for the user to change password in frontend.
I noticed that there are some templates, but I'm not sure how to use them.
Yes, I would like to implement a posibility for the user to change password in frontend.
I noticed that there are some templates, but I'm not sure how to use them.
Posted on 25/11/2009 13:18:38
In the new Extranet module (the one installed with DW7) you can simply use the standard templates to change passwords.
Are you using the pre-DW7 version?
Are you using the pre-DW7 version?
Posted on 25/11/2009 13:30:16
unfortunately we are still not using DW 7.
Posted on 27/11/2009 15:22:56
If not using DW7, create a simple aspx with that queries the URL:
When done with setting what's relevant to you, build an SQL statement that updates the AccessUser table.
Regards
Morten Snedker
mExtranetGroup=HttpUtility.UrlDecode(Base.ChkString(Base.Request("ExtranetGroup")), Encoding.UTF8);
mAccessUserCustomerNumber=HttpUtility.UrlDecode(Base.ChkString(Base.Request("AccessUserCustomerNumber")), Encoding.UTF8);
mAccessUserUserName=HttpUtility.UrlDecode(Base.ChkString(Base.Request("AccessUserUserName")), Encoding.UTF8);
mAccessUserPassword=HttpUtility.UrlDecode(Base.ChkString(Base.Request("AccessUserPassword")),Encoding.UTF8);
When done with setting what's relevant to you, build an SQL statement that updates the AccessUser table.
Regards
Morten Snedker
You must be logged in to post in the forum