C# - OleDb Excel open hatası
15.10.2017 - 01:11
System.IO.File.Copy(Server.MapPath("Dokuman\\Bulten.xls"), Server.MapPath("DokumanDolu\\BultenTaslak.xls"), true);
//
string file = Server.MapPath("") + @"\DokumanDolu\BultenTaslak.xls";
string connStr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + file + ";Extended Properties=Excel 8.0";
//Extended Properties=Excel 8.0;
OleDbConnection MyConnection;
OleDbCommand MyCommand = new OleDbCommand();
MyConnection = new OleDbConnection(connStr);
MyConnection.Open();
Open satırında
System.Data.OleDb.OleDbException: '(1) dış veritabanı sürücüsünden beklenmeyen hata.'
diye bir hata alıyorum daha önce çelışıyordu bi anda çalışmaz oldu nedenini bulamadım
110
Görüntülenme
0 Beğeni