以下獲取方法在。net中很是有用哦
1. 在asp.net中專用屬性:
獲取伺服器電腦名:page.server.manchinename
獲取使用者資訊:page.user
獲取客戶端電腦名:page.request.userhostname
獲取客戶端電腦ip:page.request.userhostaddress
2. 在網路程式設計中的通用方法:
獲取當前電腦名:static system.net.dns.gethostname()
3. 系統環境類的通用屬性:
當前電腦名:static system.environment.machinename
當前電腦所屬網域:static system.environment.userdomainname
當前電腦使用者:static system.environment.username
c 獲取MAC位址 IP位址 使用者名稱
獲取mac位址 public static string getlocalmac return mac 使用者名稱 public static string getusername return strusername catch 獲取ip位址 public static string gethos...
C 獲取MAC,使用者名稱
using system using system.management namespace soyee.comm public computer string getcpuid moc null mc null return cpuinfo catch finally string getmaca...
C 獲取IP等網路資訊
1 asp.net中獲取ip資訊 page.request.userhostname 獲取客戶端主機名稱 page.request.userhostaddress 獲取客戶端主機ip位址 2 webservice中獲取客戶端ip資訊 httpcontext.current.request.userh...