How do you validate Date by using which validation Control?

Answers were Sorted based on User's Feedback



How do you validate Date by using which validation Control?..

Answer / kamalakannan.a

<asp:regularexpressionvalidator id="regExpDate"
runat="server"

ValidationExpression="^\d{2}[\/-]\d{2}[\/-]\d{2,4}$"

ErrorMessage="It is not a valid date"
ControlToValidate="txtpatientvisitdate"
EnableClientScript="False"
Display="Dynamic"></asp:regularexpressionvalidator>

Kamal..

Is This Answer Correct ?    12 Yes 2 No

How do you validate Date by using which validation Control?..

Answer / arunajyothi.m

<asp:RegularExpressionValidator ID="revEndDate"
ControlToValidate="txtEndDate" ValidationExpression="((^
(10|12|0?[13578])([/])(3[01]|[12][0-9]|0?[1-9])([/])((1[8-9]
\d{2})|([2-9]\d{3}))$)|(^(11|0?[469])([/])(30|[12][0-9]|0?
[1-9])([/])((1[8-9]\d{2})|([2-9]\d{3}))$)|(^(0?2)([/])(2[0-
8]|1[0-9]|0?[1-9])([/])((1[8-9]\d{2})|([2-9]\d{3}))$)|(^(0?
2)([/])(29)([/])([2468][048]00)$)|(^(0?2)([/])(29)([/])
([3579][26]00)$)|(^(0?2)([/])(29)([/])([1][89][0][48])$)|(^
(0?2)([/])(29)([/])([2-9][0-9][0][48])$)|(^(0?2)([/])(29)
([/])([1][89][2468][048])$)|(^(0?2)([/])(29)([/])([2-9][0-9]
[2468][048])$)|(^(0?2)([/])(29)([/])([1][89][13579][26])$)|
(^(0?2)([/])(29)([/])([2-9][0-9][13579][26])$))"
SetFocusOnError="True" Display="Dynamic"
runat="server">*</asp:RegularExpressionValidator>

Is This Answer Correct ?    3 Yes 0 No

How do you validate Date by using which validation Control?..

Answer / marcelo becerra e

You can use the compare validator control.
you only have to set the OPERATOR to "DATATYPECHECK" and
then select type to "DATE".

End of the problem.

Is This Answer Correct ?    3 Yes 0 No

How do you validate Date by using which validation Control?..

Answer / cherran

Whereas in ASP.Net we can use RegularExpression Validator to
validate the date value. But in VB.NET we have to use Class
RegEx.

If Regex.IsMatch(txtDate,
"(0[1-9]|[12][0-9]|3[01])-(0[1-9]|1[012])-((19|20)\d\d)") Then

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More VB.NET Interview Questions

What are option strict and option explicit?

0 Answers  


when do we need a multiple document interface?

2 Answers  


Thank you for replying to my Question regarding Barcodes in VB.net. My next question is that how to use Barcode Fonts in VB.net I need a small code to Generate Barcodes in VB.net from a string of Values. This is the only problem i am left with in my project. Any body can help me please.

0 Answers  


What is versioning in .NET?

3 Answers   HCL,


Can you please explain the difference between authentication and authorization?

0 Answers  






Explain clr?

0 Answers  


what is the base class of .net?

7 Answers  


difference between checkbox vs radiobutton??

0 Answers  


Is vb.net a programming language?

0 Answers  


List the types of authentication?

0 Answers  


What is the difference between Abstract Classes and Interfaces? Give the answer as a table format....

5 Answers  


Explain about jagged arrarys ?

0 Answers  


Categories