我已经通过NuGet管理器控制台安装了Elmah(默认设置的标准软件包)。
为了测试和更好的理解,我尝试重新配置它,因此它只在“调试模式”下运行(在成功测试之后我想要有两种不同的配置用于调试和发布,例如在发布发送电子邮件中,在调试中没有等等。)。
因此我将大部分(工作)配置从Web.config移动到 Web.Debug.config :
<?xml version="1.0" encoding="utf-8"?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<configSections>
<sectionGroup name="elmah">
<section name="security" requirePermission="false" type="Elmah.SecuritySectionHandler, Elmah" />
<section name="errorLog" requirePermission="false" type="Elmah.ErrorLogSectionHandler, Elmah" />
<section name="errorMail" requirePermission="false" type="Elmah.ErrorMailSectionHandler, Elmah" />
<section name="errorFilter" requirePermission="false" type="Elmah.ErrorFilterSectionHandler, Elmah" />
</sectionGroup>
</configSections>
<system.web>
<httpModules>
<add name="ErrorMail" type="Elmah.ErrorMailModule, Elmah" />
<add name="ErrorFilter" type="Elmah.ErrorFilterModule, Elmah" />
<add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah" />
</httpModules>
</system.web>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true">
<add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah" preCondition="managedHandler" />
<add name="ErrorMail" type="Elmah.ErrorMailModule, Elmah" preCondition="managedHandler" />
<add name="ErrorFilter" type="Elmah.ErrorFilterModule, Elmah" preCondition="managedHandler" />
</modules>
</system.webServer>
<elmah>
<security allowRemoteAccess="false" />
<errorMail from="XXXX" to="XXXX"
async="true" smtpPort="0" />
</elmah>
<location path="elmah.axd" inheritInChildApplications="false">
<system.web>
<httpHandlers>
<add verb="POST,GET,HEAD" path="elmah.axd" type="Elmah.ErrorLogPageFactory, Elmah" />
</httpHandlers>
</system.web>
<system.webServer>
<handlers>
<add name="ELMAH" verb="POST,GET,HEAD" path="elmah.axd" type="Elmah.ErrorLogPageFactory, Elmah" preCondition="integratedMode" />
</handlers>
</system.webServer>
</location>
</configuration>
现在,当我尝试打开elmah.axd
页面时,我收到“无法找到资源”。错误。
我错过了什么吗?
答案 0 :(得分:2)
在本地,您应该使用web.config文件。
调试或发布模式实际上与使用哪个配置文件没有任何关系。只有在部署转换时才会这样做:
<强>的web.config 强>
这是开发人员应在本地使用的配置文件。理想情况下,您应该将其标准化。例如,您可以将localhost用于数据库字符串,而不是。你应该努力使这个在dev机器上工作而不做任何改变。
<强> web.debug.config 强>
这是将应用程序发布到开发登台环境时应用的转换。这将更改目标环境所需的web.config。
<强> web.release.config 强>
这是将应用程序发布到&#34; production&#34;时应用的转换。环境。显然,根据您的应用程序/团队,您必须小心密码。