Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经<customErrors mode="On"/>在我的 web.config 中设置了。如果站点上出现错误,用户会收到“用户友好”的错误消息。同时,我想向自己发送一封包含实际错误消息的电子邮件(所以我确切地知道出了什么问题)。
<customErrors mode="On"/>
我怎样才能做到这一点?
您必须编写代码以在文件的Application_Error方法中发送邮件Global.asax。
Application_Error
Global.asax
此处为使用 Application_Error 方法的示例。