try this:
How would you express the same hint in C#?
Regards
Konrad Viltersten
Imports System.Security .Principal
>
Public Function currentId() As String
Dim strReturn As String
>
strReturn = WindowsIdentity .GetCurrent().N ame()
>
'strReturn = User.Identity.N ame
>
Return strReturn
>
End Function
>
Public Function currentId() As String
Dim strReturn As String
>
strReturn = WindowsIdentity .GetCurrent().N ame()
>
'strReturn = User.Identity.N ame
>
Return strReturn
>
End Function
Regards
Konrad Viltersten
Comment