hi i am using 3 dropdownlist 1st one for date ,2nd for month , 3 for year
how i can combine these values and insert into database what is the coding for it?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Pradeep ChandrakerPosted May 21, 2011, 12:58 AM
DateTime selectedDt = DateTime.Parse(ddlMonth.SelectedValue +"/"+ ddlDate.SelectedValue +"/"+ ddlYear.SelectedValue);
Posted May 20, 2011, 10:39 PM
Instead of using these three dropdownlist, can't use the calendar control.
Thanks,
Murali.