外部表不是预期的格式
在导入Excel的时候报的错
string strPath = Server.MapPath(".\\file\" + filename);
string mystring = "Provider = Microsoft.Jet.OLEDB.4.0 ; Data Source = '" + strPath + "';Extended Properties='Excel 8.0'";
OleDbConnection cnnxls = new OleDbConnection(mystring);
OleDbDataAdapter Da7 = new OleDbDataAdapter("select * from [ExcelTable7$]", cnnxls);
DataSet Ds7 = new DataSet();
Da7.Fill(Ds7);
设置代码追踪,代码执行到Da7.Fill(Ds7)这句的时候报的错:外部表不是预期的格式
[最优解释]
http://topic.csdn.net/u/20110830/17/b486fb8e-3bb2-47f7-b00c-3e08423e75ea.html
[其他解释]