Hi,
how to get only date part from datetime.
txt_StartDate.Text = DateTime.Now.ToString("MM-dd-yyyy");
txt_StartDate.Text = ds.Tables["EmpTimesheet"].Rows[0][1].ToString();
but it didn't retieve (2014-01-05) date.
2014-01-05 00:00:00.000
Go to the complete details ...