Hello dstruve,
Thank you for your reply and suggestion.
I’m new on DNN, and trying to learn and write some new modules.
I had made some change on Admin/Users/password.ascx. (Actually, no code or function changed, only re-arrange some controls). The problem seems disappear, but the problem may go to the Admin/User Accounts, right after hit the change password.
The following is I re-arranged in the <asp:panel id="pnlChange" runat="server"> in the Admin/Users/password.ascx
<table id="tblChange" runat="server" cellspacing="0" cellpadding="0" width="400" summary="Password Management" border="0"
<tr >
<td colspan="2" valign="bottom">
<asp:label id="lblChangeHelp" cssclass="Normal" runat="server"></asp:label></td></tr>
<tr><td colspan="2" height="10"></td></tr>
<tr height="25">
<td class="SubHead" width="175"><dnn:label id="plOldPassword" runat="server" controlname="txtOldPassword" text="Old Password:"></dnn:label></td>
<td colspan ="1">
<asp:TextBox ID="txtOldPassword" cssclass="NormalTextBox" TextMode="password" runat="server"></asp:TextBox>
</td>
</tr>
<tr height="25">
<td class="SubHead" width="175"><dnn:label id="plNewPassword" runat="server" controlname="txtNewPassword" text="New Password:"></dnn:label></td>
<td colspan="1">
<asp:TextBox ID="txtNewPassword" cssclass="NormalTextBox" TextMode="password" runat ="server"></asp:TextBox>
</td>
</tr>
<tr height="25">
<td class="SubHead" width="175"><dnn:label id="plNewConfirm" runat="server" controlname="txtNewConfirm" text="Confirm New Password:"></dnn:label></td>
<td colspan="1">
<asp:TextBox ID ="txtNewConfirm" cssclass="NormalTextBox" TextMode="password" runat ="server"></asp:TextBox>
</td>
</tr>
<tr height="25" align="center">
<td colspan="2">
<dnn:CommandButton ID="cmdUpdate" runat="server" Text ="Change Password" imageurl="~/images/save.gif" />
</td>
</tr>
<tr height="25">
<td colspan="2">
<asp:textbox id="txtOldPW" runat="server" cssclass="NormalTextBox" textmode="Password" Width="0" BorderStyle="None" maxlength="20"></asp:textbox>
</td>
</tr>
</table>
If you or anyone knows how to fix it, please help me.
Thanks again. And I may put it to support.dotnetnuke.com.
Wei