Click here to Skip to main content
15,909,332 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
VB
For i As Integer = 0 To dt.Rows.Count - 1

   
    Dim eventdate As Date = dt.Rows(i).Item("Eventdate").ToString
Next 

How to Read the Eventdate ( DateFomat) from database ?
Posted
Comments
Laiju k 25-Apr-14 23:40pm    
check the database datatype for Eventdate

You have to check the validity of Eventdate using DateTime.TryParse Method[^]
 
Share this answer
 
Convert.ToDateTime(eventdate).ToString("yyyy-MM-dd")
 
Share this answer
 

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