I have multiple excel files which I open as datatable I want to merge all this datatables single DataTable in .net.
eg, Apr09.xls,May09.xls,Jun09.xls
All have dataas follows
Apr09.xls
EMPCODE,PresentDays
0001 ,30
0002 ,21
May09.xls
EMPCODE,PresentDays
0001 ,25
0002 ,30
New datatable will be as follows
EMPCODE,PresentDays
0001 ,30
0002 ,21
0001 ,25
0002 ,30
How to create this.