2009-08-03 7 views

답변

1

ASP.NET 멤버십 공급자를 사용하고 있습니까? 그러면 Profile.UserId가됩니다.

는 자신의 회원 시스템을 구축 했습니까?

당신은 Windows 사용자를 것에 대해 얘기하는 겁니까? 난 당신이 사용할 수 있다고 생각 :

정확한 질문을 무엇
Request.ServerVariables["LOGON_USER"] 
+0

번호는 ASP.NET 회원 공급자를 사용하고 있지 않다 ........ 을 난 .. 내 시스템에서 사전에 감사를 내은 loginid을 원하는 – Kushal

0
I got the answer.and thanks for helping me... 

    Dim strUserId As String 
    Dim aryUserId As String() 
    strUserId = HttpContext.Current.Request.LogonUserIdentity.Name 
    aryUserId = strUserId.Split("\") 
    Response.write(aryUserId(1)) 
관련 문제