Issue in Reading csv file asp.net c#
string FilePath=Server.MapPath("~/Excel_Lists/" + Path.GetFileName(FileUploadexcel.FileName)).ToString();
string csvData = File.ReadAllText(FilePath);
foreach (string row in csvData.Split('\n'))
{
//Execute a loop over the columns.
foreach (string cell in row.Split('\t'))
{
dt1.Rows[dt1.Rows.Count - 1][i] = cell;
}
}
its not splitting rows cells correctly,,,if i click on csv file cells and save it, then it works correctly, othwerwise it shows error
My Csv file data
date/time settlement id type order id sku description quantity marketplace fulfillment order city order state order postal tax collection model product sales product sales tax shipping credits shipping credits tax gift wrap credits giftwrap credits tax promotional rebates promotional rebates tax marketplace withheld tax selling fees fba fees other transaction fees other total
Jan 1, 2020 12:38:06 AM PST 12551492991 Adjustment 19Q4CoR518090-KSArtichokeHearts33oz2Pk FBA Inventory Reimbursement - Damaged:Warehouse 2 0 0 0 0 0 0 0 0 0 0 0 0 23.84 23.84
Jan 1, 2020 2:13:38 AM PST 12551492991 Adjustment 114-6752853-3545812 19Q4CoBStk-100LEDMiniatureLights FBA Inventory Reimbursement - Customer Return 1 0 0 0 0 0 0 0 0 0 0 0 0 3.85 3.85
Jan 1, 2020 2:16:54 AM PST 12551492991 Adjustment 1910CoR1218967-PanasonicBluetooth3HSPh FBA Inventory Reimbursement - Lost:Warehouse 1 0 0 0 0 0 0 0 0 0 0 0 0 41.39 41.39
Jan 1, 2020 5:55:46 AM PST 12551492991 Adjustment 114-6752853-3545812 19Q4CoBStk-100LEDMiniatureLights FBA Inventory Reimbursement - Customer Return 1 0 0 0 0 0 0 0 0 0 0 0 0 3.85 3.85
Jan 1, 2020 6:29:55 AM PST 12551492991 Adjustment 113-8937203-7736242 19Q4CoBStk-100LEDMiniatureLights FBA Inventory Reimbursement - Customer Return 1 0 0 0 0 0 0 0 0 0 0 0 0 3.91 3.91
Jan 1, 2020 7:30:02 AM PST 12551492991 Adjustment 113-9661337-0251441 19Q4CoBStk-100LEDMiniatureLights FBA Inventory Reimbursement - Customer Return 1 0 0 0 0 0 0 0 0 0 0 0 0 3.91 3.91
Jan 1, 2020 4:07:32 PM PST 12556440361 Order 111-4537955-0941844 19Q5CoS617550-NMOrgFlxSeed1400mg300ct2pk Nature Made Organic Flaxseed Oil 1,400 mg - Omega-3-6-9 for Heart Health - 300 Softgels(Pack of 2) 1 amazon.com Amazon Flowood MS 39232-8105 40.63 0 0 0 0 0 0 0 0 -6.09 -5.64 0 0 28.9
check file here https://drive.google.com/file/d/1pVxK_GPKidqgvwFtXlQ_ly_PjHV4FLo3/view?usp=sharing