ASP.NET 中的事件日志记录
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我经常使用 Apache 的 Log4Net(免费)。
有优秀的文档并且被广泛使用。
这个博客文章有一个很好、简单的演练。
Log4Net 的一大优势是它允许您记录到多个日志目的地,包括文本文件、事件日志、SQL Server 等。
I routinely use Log4Net from Apache (free).
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.
查看 log4net 以满足您的日志记录需求。甚至还有一个示例应用程序页面。
Look into log4net for your logging needs. There's even a sample application page.