Hi,
We have a requirement to mask the credit card verification code. Right now in the payment page this in plain text. Is there a way to mask this verification code text box?
Thanks in advance,
Regards,
Sunil
how to mask the credit card verification code
Re: how to mask the credit card verification code
Edit your Website/Checkout/PaymentFroms/CreditCardPaymentForm.ascx file and locate following code
and update it like this
Code: Select all
<asp:TextBox ID="SecurityCode" runat="server" Columns="4" MaxLength="4" ValidationGroup="CreditCard" AutoCompleteType="Disabled"></asp:TextBox>
Code: Select all
<asp:TextBox ID="SecurityCode" runat="server" Columns="4" MaxLength="4" ValidationGroup="CreditCard" AutoCompleteType="Disabled" TextMode="Password"></asp:TextBox>
Re: how to mask the credit card verification code
Thanks Mazhar