You can use the Date property of DateTime object to get only day.
DateTime dateOnly = date1.Date;
If you want string of Date from the DateTime object then use the ToString method by providing it the format. You can read more about custom date format in this MSDN article.
string strDate = date.ToString("MM/dd/yyyy");