Posted on: 2/11/2014 1:20:45 PM | Views : 595

Hello Experts,
i am trying to use two validations on input textboxes and running javascript to border with red and green according to the status of the page (valid or invalid).
<label for="name" class="nameLabel">Contact number</label> <input runat="server" id="Text3" maxlength="10" type="text" name="name" style="width:350px" placeholder="Enter your 10 digit mobile number..."/> <asp:RequiredFieldValidator ID="rfvContactnumber" runat="server" ControlToValidate="Text3" ValidationGroup="valgrpforfeedback" ErrorMessage="" Text=""></asp:RequiredFieldValidator> <asp:RegularExpressionValidator ID="revContactnumber" ValidationExpression="^\d{10}$" runat="server ...

Go to the complete details ...