REgarding validation error message
I have the following code in asp.net. and i want to display the error message inside the textbox. How to do that.<div class="panel-body">
<div class="col-md-3 col-md-3">
<!-- this is added by me -->
<div class="form-group">
<div class="input-group">
<div class="input-group-addon"><span class="glyphicon glyphicon-user"></span> </div>
<asp:TextBox ID="txtLrNo" CssClass="form-control" placeholder="Enter LR. No" runat="server">
</asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" CssClass="Validators"
Display="Dynamic" ControlToValidate="txtLrno" ForeColor="#FF0000" runat="server" ErrorMessage="Lr No is Required."></asp:RequiredFieldValidator>
</div>
</div>
<!-- upto here -->
</div>