Switch to full style
ASP/ASP.net examples
Post a reply

date validation in asp

Fri Apr 08, 2011 10:01 pm

Following code use isDate function to validate date inserted from user .

Code:
<form method ="post" action="<%= Request.ServerVariables("SCRIPT_NAME") %>"
Enter your birthday :<input type ="text" name="inputdate" size="40" id="inputdate "><br
<
input type="submit" value="validate"
</
form
 

ASP script
Code:
<% 
    
Dim strDateblnDateIsValidcreatedDate
    
If Request.ServerVariables("CONTENT_LENGTH") <> 0 Then
        strDate 
Trim(Request.Form("inputdate"))
        
' use isDate function for validation
        If isDate(strDate) Then
            createdDate = CDate(strDate)
            ' 
date is valid 
            blnDateIsValid 
True
        
Else
            
' invaild date.
            Response.Write(strDate & " is <b>invalid date</b>")
        End If
        
        ' 
valid date.
        If 
blnDateIsValid True Then
            Response
.Write(strDate " is <b>valid date</b>")
        
End If
End If 
%>
 




Post a reply
  Related Posts  to : date validation in asp
 Want start and end date of a month from current date     -  
 Formatting a Date with date()     -  
 get next date by next day     -  
 Date in Java     -  
 How To Increment Date In JSP?     -  
 String to sql.Date     -  
 Google indexing DATE     -  
 date formatting in Java     -  
 Convert String to Date     -  
 make class of date     -  

Topic Tags

ASP Validation, ASP Time