DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Javascript To Validate Or Compare Two Dates
// Javascript to validate or compare two dates
function IsValidDate() {
var dtFrom = R('<%=txtFrom.ClientId%>').value;
var dtTo = R('<%=txtTo.ClientId%>').value;
if ((dtTo == null || dtFrom == null) || (dtTo == '' || dtFrom == '') || (dtTo == undefined || dtFrom == undefined)) {
alert('Please select proper start and end date');
return false;
}





