I am able to get date and time using:
DateTime now = DateTime.Now;
How can I get the current date and time separately in the DateTime forma
Use DateTime.Today property. It will return date component of DateTime.Now. It is equivalent of DateTime.Now.Date.
DateTime.Now
DateTime.Now.Date