1
我想獲取服務器進程的標識。這是一個MVC 4/Razor項目。這是我有:如何顯示服務器進程的標識
@using System.Diagnostics
<div>
The identity running this view is @Thread.CurrentPrincipal.Identity
</div>
但我得到一個錯誤說名字的主題不存在...
我想獲取服務器進程的標識。這是一個MVC 4/Razor項目。這是我有:如何顯示服務器進程的標識
@using System.Diagnostics
<div>
The identity running this view is @Thread.CurrentPrincipal.Identity
</div>
但我得到一個錯誤說名字的主題不存在...
試試這個,
@System.Threading.Thread.CurrentThread.ManagedThreadId
美麗!謝謝! – SantasNotReal
you'r welcome .. – mecek