Elmah没有看到数据库

时间:2019-02-27 20:35:30

标签: asp.net web-config elmah

我们正在迁移到新的生产Web服务器和sql服务器。我已启动并运行我的应用程序,除了Elmah不会记录任何错误并且elmah.axd文件说数据库中没有条目。我猜测某种程度上,我们的用户名混乱了。我的web.config的elmah部分是:

<elmah>
    <security allowRemoteAccess="1"/>
    <errorLog type="Elmah.SqlErrorLog, Elmah" connectionStringName="DBConnectionString"/>
</elmah>

我的DBConnectionString是:

  <connectionStrings>
    <clear/>
    <add name="DBConnectionString" connectionString="Data Source=....;User Id=....;Password=....;Initial Catalog=cms_stagedb3;" providerName="System.Data.SqlClient"/>
  </connectionStrings>

用户ID在elmah sproc上设置了“执行”权限。在web.config模块部分和system.WebServer中有条目。任何建议表示赞赏。

TIA。

0 个答案:

没有答案