i have been banging my head against a wall, in trying to resolve this issue. When i try and type in the british pound sign as part of a password, when the password is sent, the user received the password with a ? instead of a £....
<asp:RegularExpressionValidator
ID="RegularExpressionValidator1"
ValidationExpression="^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[^\da-zA-Z]).{8,15}$"
ErrorMessage="Passwords must be 8 characters min, must contain digits, special characters and upper and lower characters"
Display="Dynamic"
ControlToValidate="tbPass"
runat="server"
ForeColor="red">
</asp:RegularExpressionValidator>
So, i want a password to send with the pound sign included if this has been requested...
i tryed using £ and also tryed typing in 163 above.. but the password is still missing the £ and replaced by the ?.. I understand this is encoding or something, but i cant figure out how to change this.