Click here to Skip to main content
15,890,123 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hello Guys,

I am trying to save values into the excel in the server. However, I get ISAM error.

How can I solve this problem?

C#
string datasource = @"data source=" + Server.MapPath(@"MatbuEvrak/" + lbl_PoNo.Text + @"/EVRAKLAR.xls");

string conString = @"Provider=Microsoft.ACE.OLEDB.12.0;" + datasource + " Extended Properties=Excel 12.0";


Regards

Haluk
Posted
Comments
E.F. Nijboer 9-Oct-12 10:23am    
What is the error message?
haluk_78 9-Oct-12 10:37am    
couldn't be found installed ISAM

1 solution

If you had googled the term, you would have found that ISAM stands for "Indexed Sequential Access Method".

You are probably getting that error because you do not have the Access drivers installed on the server.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900