asp.net 获得客户端电脑名字

发布网友 发布时间:2022-04-21 17:47

我来回答

4个回答

热心网友 时间:2022-04-27 09:49

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

4 利用System.Security.Princip al;

if(User.Identity.IsAuthenticated)
{ WindowsIdentity CurrentIdentity = WindowsIdentity.GetCurrent();
message.Text="用户的windows登陆名称:<b>"+CurrentIdentity.Name+"<br><br>";
Response.Write(str.Substring(0,4));
}

参考资料:http://www.398588.com/Article/2008/12/04/35.aspx

热心网友 时间:2022-04-27 11:07

HttpContext.Current.Request.LogonUserIdentity.Name ;

热心网友 时间:2022-04-27 12:41

string username=Request.UserHostName.Tostring();

热心网友 时间:2022-04-27 14:33

默认情况下获取不到

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com