Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
需要拆分服务器变量 user_logon 并删除 domain\ 部分。
目前它返回为 domain\542458
var numbers = user_logon.Split("\\")[1];
var user = user_logon.Split("\")[1];
http://msdn.microsoft.com/en-us/library/system.string.split.aspx