在.net中获取一台电脑名,ip地址及当前用户名是非常简单,以下是我常用的几种方法,如果大家还有其他好的方法,可以回复一起整理:
1. 在asp.net中专用属性:
获取服务器电脑名:page.server.manchinename
获取用户信息:page.user
获取客户端电脑名:page.request.userhostname
获取客户端电脑ip:page.request.userhostaddress
2. 在网络编程中的通用方法:
获取当前电脑名:static system.net.dns.gethostname()
根据电脑名取出全部ip地址:static system.net.dns.resolve(电脑名).addresslist
也可根据ip地址取出电脑名:static system.net.dns.resolve(ip地址).hostname
3. 系统环境类的通用属性:
当前电脑名:static system.environment.machinename
当前电脑所属网域:static system.environment.userdomainname
当前电脑用户:static system.environment.username
举例子来说明:
using system.net;
private void buttonip_click(object sender, system.eventargs e)
{
system.net.ipaddress[] addresslist = dns.gethostbyname(dns.gethostname()).addresslist;
if (addresslist.length>1)
{
textlip.text = addresslist[0].tostring();
textsip.text = addresslist[1].tostring();
}
else
{
textlip.text = addresslist[0].tostring();
textsip.text = “没有可用的连接”;
}
}