|
|
conversion of date to DD-MMM-YYYY format in asp.net
Similar entries
- How to format datetime in SQL query
- How to get current date and time and display it in particular format
- How to add or subtract days in a date using JSP
- The type Date is ambiguous jsp error
- Uttar Pradesh Class 12th Intermediate Exam Time Table 2012
- How to compare two dates in jsp
- What is JPEG and MPEG
- UPSEE Counselling Schedule Date 2011 upsee.nic.in , SEE UP Counselling 2011
- Where is viewstate information stored and in which format
- Diffrence between JPEG and GIF image formats
use tostring method of datetime class
Dim dt As DateTime
dt = DateTime.Now
Response.Write(dt.ToString("dd-MMM-yyyy"))