You need to make a combination of two entry controls. Here is two ways how to do it:
1.
DateTime dateSelected = Calendar1.SelectedDate;
TimeSpan time = TimeSpan.Parse(DropDownList1.SelectedItem.Text);
DateTime dateForInsert = dateSelected.Add(time);
2. DateTime dateForInsert = DateTime.ParseExact(Calendar1.SelectedDate.ToString("MM/dd/yyyy ") + DropDownList1.SelectedItem.Text, "MM/dd/yyyy HH:mm", CultureInfo.InvariantCulture);
In SQL Server 2008 which comes out in February 2008, you will have posibility of puting two entries in separate columns. So you will have column for date only and column for time only parts.