Log4net 与 dotnetnuke

发布于 2024-08-16 12:36:19 字数 96 浏览 6 评论 0原文

如何配置 Log4net 以在 Dotnetnuke 解决方案中工作? 我正在使用 DNN 5.2 Global.asax 没有代码隐藏文件来放置初始化 Log4net 的代码。

How can i configure Log4net to work in a Dotnetnuke solution?
I am using DNN 5.2
the Global.asax does not have a code behind file to put code to initialize the Log4net.

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

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

发布评论

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

评论(2

同尘 2024-08-23 12:36:19

您可以在 Global.asax 文件中使用类似的内容:

<script runat="server">
    Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs)
        ' Configure log4net here
    End Sub
</script>

You can use something like this in the Global.asax file:

<script runat="server">
    Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs)
        ' Configure log4net here
    End Sub
</script>
又怨 2024-08-23 12:36:19

我在App_Code下找到了Global.asax.vb(global.asax的代码隐藏)。
由于某些原因,在 dotnetnuke 中,不会调用 asax 中编写的代码。

I found the Global.asax.vb (code behind for the global.asax) under App_Code.
For some reason in dotnetnuke the code written inside in the asax is not called.

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