Click Here To Get Amazing Facebook Profile Covers,Status Messages

conversion of date to DD-MMM-YYYY format in asp.net

1 reply [Last post]
parth's picture
parth
User offline. Last seen 2 years 35 weeks ago. Offline
Joined: 09/20/2009

In my asp.net application i am displaying current date, but the date is being displayed in mm/dd/yy format but waht i want is to display it in DD-MMM-YYYY format


perfect_storm's picture
perfect_storm
User offline. Last seen 2 years 9 weeks ago. Offline
Joined: 08/22/2009
use tostring method of datetime class

use tostring method of datetime class

Dim dt As DateTime
dt = DateTime.Now
Response.Write(dt.ToString("dd-MMM-yyyy"))