Click here to Skip to main content
15,895,656 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
help me
my Mail Id sbramhaji@gmail.com

What I have tried:

<!--DatePicker-->
<script type="text/javascript">
$(document).ready(function () {
$("#txtBOD").datepicker({ });
});
</script>

<!--Bootstrap validation -->
<script type="text/javascript">
$(document).ready(function () {
$('#form1').bootstrapValidator({
feedbackIcons: {
valid: 'glyphicon glyphicon-ok',
invalid: 'glyphicon glyphicon-remove',
validating: 'glyphicon glyphicon-refresh'
},
fields: {
txtBOD: {
validators:{
identical:{
notEmpty:{
message: 'The date is required'
}
}
}
}
}
});
});

</script>
<!-- ASP.NET --->

<asp:TextBox ID="txtBOD" runat="server" >


<asp:Button ID="btnSubmit" runat="server" Text="Submit" />
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900