这几天帮别人做一个网站。 最开始的时候他用数据库备份文件.bak,发给我数据库。 他是用的sql2008企业版,而我用的是express。 搞了好半天,终于把数据库恢复了。 但是在打开网站的时候, 最开始是说数据库连接出错。 等我把数据库服务器打开,就又报出了这个错误。   
“TMS.Data.DataAccess”的类型初始值设定项引发异常  public List<CareerDevelopment> GetCareerDevelopmentPlan(Employee emp)
        {
            SqlDataReader reader = SqlHelper.ExecuteReader(DataAccess.ConnectionString,
                "spSelectCareerDevelopmentByEmployeeId",
                emp.EmployeeId);            List<CareerDevelopment> careerDevelopments = new List<CareerDevelopment>();这里的ConnectionString是空的` 不知道是为什么。  配置文件我改了一点,也传上来/。<connectionStrings>
<add connectionString="data source=.;Initial Catalog=MONEYMAKER;Integrated Security=SSPI;" name="ApplicationServices" providerName="System.Data.SqlClient"/> providerName="System.Data.SqlClient"/>
</connectionStrings>连接的数据库名字叫MONEYMAKER. 我现在真的不知道怎么办了,我不知道我有没有把这个问题描述清楚。请各位高手给予指点。