のメールを設定することができません、私は次の構成ファイルの抜粋を持ってELMAH
<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>
<mailSettings>
<smtp deliveryMethod="Network">
<network host="smtp.gmail.com"
port="587"
userName="[email protected]"
password="password" />
</smtp>
</mailSettings>
</system.net>
<elmah>
<errorMail
from="[email protected]"
to="[email protected]"
sync="true"
smtpPort="0"
useSsl="true"
/>
</elmah>
私は適切なもので...例1などを交換しました。今、私は次の問題があります: - 1)なぜそれは動作していないのですか? 2)どうすればデバッグできますか? 3)Web.configをデバッグするための恒久的な方法が必要です。または、設定ファイルに何か問題があるときに何らかのエラーメッセージを出すようなコードが少なくとも必要です。
..私はそれを試してみましたが、それは動作していません! – Francisco