有Elmah的教程吗?

发布于 2024-12-19 23:42:08 字数 1540 浏览 2 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

新雨望断虹 2024-12-26 23:42:08

使用 Nuget 包控制台并输入“Install-Package ELMAH”

这是有关如何让 Nuget 工作的指南

http://docs.nuget.org/docs/start-here/Using-the-Package-Manager-Console

工作完成。

Use the Nuget package console and type 'Install-Package ELMAH'

Heres a guide on how to get Nuget working

http://docs.nuget.org/docs/start-here/Using-the-Package-Manager-Console

Job Done.

青春如此纠结 2024-12-26 23:42:08

我写了一个 ELMAH 教程,应该可以回答您的问题。本教程向您展示如何逐步安装和配置 ELMAH。我已将重要部分提取到此答案中,但请查看链接以获取更多详细信息。

  1. 通过运行以下命令(或通过 Visual Studio 中的 NuGet 对话框安装 ELMAH:

    Install-Package ELMAH

  2. 启动项目并导航至:

    [您的 URL]/elmah.axd

  3. ELMAH 向您显示所有已记录错误的列表。第一次加载时该值为空。

  4. 通过从代码中抛出异常来生成新错误。如果您再次访问 /elmah.axd,将记录该异常。

上述步骤使用内存记录器。 ELMAH 附带许多不同的选项,例如 SQL Server、MySql 和 XML。

I've written an ELMAH Tutorial which should answer your questions. The tutorial shows you how to install and configure ELMAH step by step. I've extracted the important parts into this answer, but check out the link for more details.

  1. Install ELMAH by running the following command (or through the NuGet dialog in Visual Studio:

    Install-Package ELMAH

  2. Start your project and navigate to:

    [Your URL]/elmah.axd

  3. ELMAH shows you a list of all the logged errors. This will be empty on the first load.

  4. Generate a new error by throwing an exception from your code. If you visit /elmah.axd again, the exception will be logged.

The steps above use the in-memory logger. ELMAH comes with a lot of different options like SQL Server, MySql and XML.

谜兔 2024-12-26 23:42:08

ELMAH wiki 提供了有关为多个不同后备存储设置和配置 ELMAH 的详细说明。

如果您使用的是 Visual Studio 2010 和 NuGet,有多个不同的 ELMAH 软件包可以下载、设置和配置网站以使用 ELMAH。

The ELMAH wiki has detailed instructions on setting up and configuring ELMAH for several different backing stores.

If you are using Visual Studio 2010 and NuGet, there are several different ELMAH packages that will download, setup and configure a website to use ELMAH.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文