C#: Change format Day with Leading zero In DateTime
DateTime.Now.ToString("MM/dd/yyyy")
edit: this assumes the questioner wanted the full date formatted with a double-digit day. If he wanted the day only, then other answers are better.
Two quick methods
DateTime.Now.Day.ToString("00");
DateTime.Now.ToString("dd");
Try this:
DateTime.Now.Day.ToString("00");