i want my date to indicate an error msg to indicaite if an end date is in the past this is the java script i have and it dont seem to work
var
ErrorCount = 0;
var
dteStartDate = GetField("dteStartDate", "");
var
dteEndDate = GetField("dteEndDate", "");
while
(ErrorCount == 0)
{
if
(dteStartDate < dteEndDate)
{
//alerting the user to select a valid time
alert("Please select a valid time that the Audit should start!");
ErrorCount = 1;
break;
}
ErrorCount = 1
}