.NET连接Excel,欲导出里面的数据时出现的问题?
string connString=@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Inetpub\wwwroot\ExcelTest\Excel\Book1.xls;Extended Properties=Excel 8.0";
OleDbConnection conn=new OleDbConnection(connString);
OleDbCommand cmd=new OleDbCommand("select * from [Sheetl$]",conn);
请教红色标记那句话是什么意思?特别是那个[Sheetl$]
求教???!!