Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

่Žทๅ?–ๅฝ“ๅ‰?็™ป้™†็”จๆˆท็š„็™ป้™†ๅ?? (See related posts)

// description of your code here

http://support.microsoft.com/default.aspx?scid=kb;zh-CN;832769
//่Žทๅ?–ๅฝ“ๅ‰?็™ป้™†็”จๆˆท็š„็™ป้™†ๅ?? 
WindowsPrincipal wp = (WindowsPrincipal)Thread.CurrentPrincipal; 
string wpname = wp.Identity.Name.ToString(); 
int j = wpname.LastIndexOf("\\"); 
string userName = wpname.Substring(j+1); 
string domainName = wpname.Substring(0,j); 


You need to create an account or log in to post comments to this site.


Click here to browse all 4858 code snippets

Related Posts