ऐसा लगता है कि आपके कनेक्शन स्ट्रिंग में वास्तव में कई चीज़ें गलत हैं। एक बात के लिए, एक्सेल कनेक्शन स्ट्रिंग्स में "आरंभिक कैटलॉग" शामिल नहीं होना चाहिए, और उनमें फ़ाइल का संदर्भ देने वाला डेटा स्रोत शामिल होना चाहिए, सर्वर नहीं।
इसके बजाय इसे आजमाएं:
// There is no column name In a Excel spreadsheet.
// So we specify "HDR=YES" in the connection string to use
// the values in the first row as column names.
if (strExtension == ".xls")
{
// Excel 97-2003
strExcelConn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + Server.MapPath(strUploadFileName) + ";Extended Properties=\"Excel 8.0;HDR=Yes;\"";
//if the above doesn't work, you may need to prefix OLEDB; to the string, e.g.
//strExcelConn = "OLEDB;Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + Server.MapPath(strUploadFileName) + ";Extended Properties=\"Excel 8.0;HDR=Yes;\"";
}
else
{
// Excel 2007
strExcelConn = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + Server.MapPath(strUploadFileName) + ";Extended Properties=\"Excel 12.0 Xml;HDR=YES\"";
}
फी, http://connectionstrings.com इस तरह की चीज़ों के लिए एक अच्छा संसाधन है।