Click here to Skip to main content
15,920,438 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi sir/madam

So many times i am trying to converting date format from present date format MM/dd/yyyy
to yyyyMMdd (no space) and present that in into textbox without using datetimepickercontrol. I am not getting the way to present. If u don't mine may i know that?

thank u
Posted

1 solution

C#
DateTime myDate = DateTime.Now;
Textbox.text = myDate.ToString("yyyyMMdd");


That works in my test system.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900