I would like to know how to validate a decimal value in TextBox
, what happens is that when I write a decimal example 12..00
or 12...55
my system goes down, I want to validate only the point and a single point in ASP C #.
<asp:TextBox ID="TxtMontoPagado" runat="server" placeholder="Monto Pagado" Width="140px" Enabled="True" class="form-control" title="Ingrese el Monto" data-error-msg="Ingrese el Monto" ></asp:TextBox>
<cc1:FilteredTextBoxExtender ID="FilteredTextBoxExtender8" runat="server" FilterType="Numbers, Custom" ValidChars=".," TargetControlID="TxtMontoPagado" />