Как импортировать данные из excel в класс in ASP.NET с#
Дорогие Все,
У меня есть ASP.NET веб-приложение на языке C#.
Я хочу импортировать данные из excel в Repeater с помощью linq.
Файл excel содержит логотип компании(изображение), пустые строки и несколько таблиц с именами столбцов и строк.
Пример:
----------------------------------------------------------------------------- ClientInfo | FieldInfo | RigInfo | ----------------------------------------------------------------------------- Name | abc | Field | f1 | Rig | r1 | ----------------------------------------------------------------------------- Div | d1 | Field | f2 | Rig | r3 | ----------------------------------------------------------------------------- ----------------------------------------------------------------------------- ClientInfo | FieldInfo | RigInfo | ----------------------------------------------------------------------------- Name | abs | Field | f3 | Rig | r2 | ----------------------------------------------------------------------------- Div | d3 | Field | f4 | Rig | r4 | -----------------------------------------------------------------------------
Что я уже пробовал:
public class ImportFromExcel { public string Client { get; set; } public string Division { get; set; } public string Superintendent { get; set; } public string GS { get; set; } public string Engineer { get; set; } public string Foreman { get; set; } public string Field { get; set; } public string Well { get; set; } public string SITE { get; set; } public string Operations { get; set; } public string Equipment_Name { get; set; } public long Distance { get; set; } public string Last_24_hrs_Operations { get; set; } public string Next_24_hrs_Operations { get; set; } public string Issues { get; set; } public DateTime EquipmentMovement_in { get; set; } public DateTime EquipmentMovement_out { get; set; } public long No_OfHours { get; set; } public string Crew { get; set; } public long TotalNoEmployees { get; set; } }
List<ImportFromExcel> regCandidates = new List<ImportFromExcel> { }; if (fuExcelfile.HasFile) { string csvFilePath = ""; if (fuExcelfile.HasFile) { csvFilePath = "" + @"" + SaveDocument(fuExcelfile); //Excel file path hdnfilepath.Value = csvFilePath; } else { csvFilePath = hdnfilepath.Value.ToString(); } List<string> Fulltext= File.ReadAllLines(csvFilePath).Where(line => !string.IsNullOrWhiteSpace(line)).ToList(); //getting some rubbish data var strText = Fulltext; }
Я пробовал читать как CSV, но у меня ничего не получается.
Может ли кто-нибудь мне помочь?
Спасибо в adv.
Maciej Los
Поделитесь своим кодом...
CHill60
Не могли бы вы попытаться объяснить свою проблему?
abdul subhan mohammed
В excel есть несколько таблиц, а в файле excel есть имена столбцов и строк.. Итак, как извлечь данные, поскольку они имеют имена строк и столбцов.