i have 3 dropwown lists for day month and year and i want to store date in one field in database using c#.net in sql server.
how to combine the values n form a date
Concate all three values for dd/mm/yyyy in string variable then insert into query by converting string in to datetime using Convert.ToDateT ime(string)...a nd proceed.bye
Comment