What does your Data Schema look like.
Explain a little more what you mean by seperating the date and time. Are you doing something like this?
Code:
string[] arrayDate = DateTime.Now.Date.ToString().Split(' ');
string date = arrayDate[0];
string time = arrayDate[1];