1、DateTime dt= DateTime.ParseExact("20110720", "yyyyMMdd", Thread.CurrentThread.CurrentCulture);
2、日期插入MDB中
例如MDB中某字段是日期格式的。则需要用到下边的方法。
format('" + dtpDCRQ.Value.Date + "','yyyy/mm/dd')
insert Table (TimeA) values (format('" + dtpDCRQ.Value.Date + "','yyyy/mm/dd'))