I have to fill DropDownBox from the excel sheet data using C#.net.
Thanks in advance.
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.
Manikavelu VelayuthamPosted Dec 3, 2010, 4:23 AM
var excel = new ExcelQueryFactory("FileName");
var indianaCompanies = from c in excel.Worksheet<Company>()
where c.State == "IN"
select c;