Date coming out of a database, need to format as "mm/dd/yy"
For Each dr as DataRow in ds.Tables(0).Rows
Response.Write(dr("CreateDate"))
Next
|
|
Date coming out of a database, need to format as "mm/dd/yy"
|
||
|
|
|
|
Edit: If dr("CreateDate") is DBNull, this returns "". |
||
|
|
|
|
Easy:
// I would also check that it isn't dbnull before doing it though
|
||
|
|
|
|
Convert.ToDateTime(dr("CreateDate")).ToShortDate() See the MSDN docs for other functions available from the DateTime datatype, including custom formats available through the 'ToString' function. |
||
|
|
|
|
|
||
|
|