DO NOT DOWNLOAD - GET THE STABLE SOURCE FROM THE DOWNLOADS TAB

Fixes: 26389, issue with browsers saving passwords in change password fields.

[TFS Changeset #64443]
This commit is contained in:
Shandem
2010-03-04 14:26:59 +00:00
parent df83b99218
commit d7c1b29b2e
2 changed files with 3 additions and 3 deletions

View File

@@ -5,10 +5,10 @@
<div id="umbPasswordChanger" style="display: none;">
<table>
<tr><th style="width: 270px;">New Password:</th><td style="width: 359px">
<asp:TextBox ID="umbPasswordChanger_passwordNew" AutoCompleteType="None" TextMode="password" runat="server"></asp:TextBox>
<asp:TextBox ID="umbPasswordChanger_passwordNew" autocomplete="off" AutoCompleteType="None" TextMode="password" runat="server"></asp:TextBox>
</td></tr>
<tr><th>Confirm new Password:</th><td style="width: 359px">
<asp:TextBox ID="umbPasswordChanger_passwordNewConfirm" AutoCompleteType="None" TextMode="password" runat="server"></asp:TextBox>
<asp:TextBox ID="umbPasswordChanger_passwordNewConfirm" autocomplete="off" AutoCompleteType="None" TextMode="password" runat="server"></asp:TextBox>
<asp:CompareValidator ID="CompareValidator1" runat="server" ErrorMessage="Passwords must match" ControlToValidate="umbPasswordChanger_passwordNew"
ControlToCompare="umbPasswordChanger_passwordNewConfirm" Operator="Equal"></asp:CompareValidator>
</td></tr>

View File

@@ -1,7 +1,7 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.3053
// Runtime Version:2.0.50727.4200
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.