Need your urgent help, kindly let me know how to convert date format to DD-MM-YYYY in C#. I am only looking for DD-MM-YYYY format not anything else.
Please help.
|
Need your urgent help, kindly let me know how to convert date format to DD-MM-YYYY in C#. I am only looking for DD-MM-YYYY format not anything else. Please help. |
||||
|
DateTime s1 = System.Convert.ToDateTime(textbox.Trim()); DateTime date = (s1); String frmdt = date.ToString("dd-MM-yyyy"); will work |
|||
|
|
|
First convert your string into DateTime variable:
Then convert this variable back to string in correct format:
|
|||||||
|
|
Do you have your date variable stored as a String or a Date type? In which case you will need to do something like
or
You can then call ToString("dd-MM-yyyy") on your date variable |
|||
|
|
|
|||||||
|
|
According to one of the first Google search hits: http://www.csharp-examples.net/string-format-datetime/
|
|||
|
will do it. Here is a good reference for different formats. |
|||||||||||||
|
|
|||
|
DD-MM-YYYYformat? Which language: VB, C#, something else? Please provide more info. – matt Jan 10 '11 at 17:38