开发者

how to convert time format from m/dd/yy to dd-MMM-yyyy with vb.net?

开发者 https://www.devze.com 2023-02-17 17:11 出处:网络
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

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

0

精彩评论

暂无评论...
验证码 换一张
取 消