asp.net 的初学者
  c#下访问foxpro数据库,
<script Language="C#" runat="server">
    public void Page_Load(Object sender,EventArgs e)
    {
        string strConn = "Extended Properties=FoxPro;DRIVER={Microsoft    Visual FoxPro Driver};SourceType=DBF;Provider=Microsoft.Jet.OLEDB.4.0;Data Source=e:\\vfp\\55.DBF;";
        OleDbConnection cn=new OleDbConnection(strConn);
        cn.Open();
        cn.Close();
        
        }
    </script>
提示
Exception Details: System.Data.OleDb.OleDbException: 找不到可安装的 ISAM。