简体   繁体   中英

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.NET?

var dateString = DateTime.Parse("3/26/2011").ToString("dd-MMM-yyyy")

DateTime format strings

"d-MMM-yyyy" should do it

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM