我的datagridview一直说没有找到名为URL的列

时间:2013-04-19 19:22:56

标签: c# csv datagridview

我收到一个名为URL not found错误的列。

我添加了一个新的dataGridView并创建了2列。我将列URL和攻势命名为。 我正在将CSV文件中的数据导入到第1列。

 TextFieldParser parser = new TextFieldParser(@"C:\\file.csv");
 parser.TextFieldType = FieldType.Delimited;
 parser.SetDelimiters(",");
 while (!parser.EndOfData)
 {
    //Processing row
    string[] fields = parser.ReadFields();
    foreach (string field in fields)
    {
       //TODO: Process field
       DataGridViewRow row = (DataGridViewRow)dataGridView1.Rows[0].Clone();                    
       row.Cells["URL"].Value = field;
       row.Cells["Offensive"].Value = "";
       dataGridView1.Rows.Add(row);
    }
 }
 parser.Close();

0 个答案:

没有答案