ASP.NET 中的事件日志记录

发布于 2024-12-29 01:09:48 字数 236 浏览 1 评论 0原文

我正在使用 VS2005 C# .NET 2.0 和 SQL Server 2005。

是否有网站提供分步说明来为我的 Web 应用程序实现事件日志记录?

编辑:

我想将日志事件文件保存为应用程序文件夹中的文本文件。

我的 Web 应用程序在多个 SQL 数据库之间进行登录、验证和检查,以及从 SQL 数据库导入和导出数据。我想将上述事件记录在文本文件中。

I am using VS2005 C# .NET 2.0 and SQL Server 2005.

Are there any websites that provide step by step instructions to implement event logging for my web application?

Edit:

I will like to save the log event files as a text file in the application folder.

As my web application does login, validations and checks between several SQL databases, as well as import and export of data from SQL databases. I would like to log the events above in text files.

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

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

发布评论

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

评论(2

简美 2025-01-05 01:09:48

我经常使用 Apache 的 Log4Net(免费)。

Apache log4net库是帮助程序员输出日志的工具
语句到各种输出目标。 log4net 是一个端口
Microsoft® .NE​​T 运行时的优秀 Apache log4j™ 框架。我们
保持框架在精神上与原始 log4j 相似,同时
利用 .NET 运行时中的新功能。

有优秀的文档并且被广泛使用。
这个博客文章有一个很好、简单的演练。

Log4Net 的一大优势是它允许您记录到多个日志目的地,包括文本文件、事件日志、SQL Server 等。

I routinely use Log4Net from Apache (free).

The Apache log4net library is a tool to help the programmer output log
statements to a variety of output targets. log4net is a port of the
excellent Apache log4j™ framework to the Microsoft® .NET runtime. We
have kept the framework similar in spirit to the original log4j while
taking advantage of new features in the .NET runtime.

There is excellent documentation and it is widely used.
This blog post has a nice, simple walkthrough.

A big advantage of Log4Net is that it allows you to record to multiple log destinations including text files,, the event log, SQL Server and many others.

江湖彼岸 2025-01-05 01:09:48

查看 log4net 以满足您的日志记录需求。甚至还有一个示例应用程序页面。

Look into log4net for your logging needs. There's even a sample application page.

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