ExcelReader

Last Update
23 October 2010
Regular License
$4
Extended License
$20
Sales
35

ExcelReader component can be used to read and convert the content of Excel 97-2003 format files into DataTables, that can easily be used in your applications.

To display a sheet in a GridView control 3 lines of code needed:

DataTable dtSheet1 = ExcelReader.GetSheet(Filename, 0); GVSheet1.DataSource = dtSheet1; GVSheet1.DataBind();