我的ASP.Net Web服务运行了多长时间?

时间:2014-01-16 23:16:32

标签: c# asp.net vb.net web-services

在网络服务中,我想知道它运行了多长时间。似乎应该有一个简单的方法来做到这一点,但显然我正在搜索错误的搜索词,因为我没有想出任何东西。

1 个答案:

答案 0 :(得分:1)

这就是我的所作所为(类似于ta.speot.is所指出的一些观点here)。感谢

Public Sub New()
    if (Application("ServiceStarted") == null) { // Run only first time
        Application.Lock()
        Application("ServiceStarted") = Now()
        Application.UnLock()
    }
End Sub