how to convert time format from m/dd/yy to dd-MMM-yyyy with vb.net?
I have a literal on my webform. It displays date from a database as 3/26/2011
but I want it to display the date as 26-Mar-2011
How do I do this with VB.N开发者_JAVA百科ET?
var dateString = DateTime.Parse("3/26/2011").ToString("dd-MMM-yyyy")
DateTime format strings
"d-MMM-yyyy" should do it
精彩评论