I use an aspx form to collect the date (3rd party date control) and hours and minutes via 2 seperate dropdown menus.
These are updating a database via a stored procedure process as follows:
scCommand.Parameters.AddWi
thValue("@
ManualDate
", DatePicker_ProspectCallBac
k.Selected
Date);
scCommand.Parameters.AddWi
thValue("@
ManualHour
", DropDownList_ManualHour.Te
xt);
scCommand.Parameters.AddWi
thValue("@
ManualMinu
tes", DropDownList_ManualMinutes
.Text);
My question is how get all these 3 entries into 1 field (smalldatetime) -- so I can add that as a single entry within the database table.
Thank you in advance for your time and efforts with this enquiry
Start Free Trial