1
Answer

How write ELMAH connectionstring in the in the web.config?

Pankaj Kumar

Pankaj Kumar

6y
1.9k
1
Are you providing ELMAH with a full connection string in the asp.net web.config?
 
<elmah>
<errorLog type="Elmah.SqlErrorLog, Elmah" connectionStringName="conStr"/>
</elmah>
<connectionStrings>
<add key="conStr" value="initial catalog=ansitsdev_MFTemp; Data Source=DESKTOP-T3SKQH9; integrated security=true"/>
</connectionStrings>
Answers (1)