GridView (Aspx)(CSV) Data is not displayed correctly in the rows – Asp.net
The data is not displayed correctly in the columns. The CSV consists of 7 columns. Rows are of different length. I can not upload a picture.(https://ibb.co/0fnfLW7) DataTable tblcsv = new DataTable(); tblcsv.Columns.Add("Vorname"); tblcsv.Columns.Add("Nachname"); tblcsv.Columns.Add("RFID"); string csvData = File.ReadAllText(csvPath); //spliting row…