改成
注意路径,改成你自己的,一般mdb都是放在app_data下的。~在.net中是代表网站根目录
然后在连接的时候字符串是
string db = @"Provider=Microsoft.Jet.OleDb.4.0;Data Source=" + HttpContext.Current.Server.MapPath(System.Configuration.ConfigurationManager.AppSettings.Get("ConnectionString"));
OleDbConnection conn = new OleDbConnection(db);
.....