client user/computer identification

M

mitja

Hi,
I have read a lot of posts on the web and got no answer. Is there any chance
of geting any unique client identification data (his IP-but not proxy IP or
router or NAT, his username, his computer name, anything) to know from where
is the user accesing my aspx page.

I have to get some identfication to know on which computer in my company is
user working.
It would be easy if thet would be just intranet (REMOTE_HOST ), but I have
some computers that are outside the intranet at the other part of the city,
accessing my .net application over the web?

thanks
Mitja
 
G

Guest

Hi,
I have read a lot of posts on the web and got no answer. Is there any chance
of geting any unique client identification data (his IP-but not proxy IP or
router or NAT, his username, his computer name, anything) to know from where
is the user accesing my aspx page.

I have to get some identfication to know on which computer in my company is
user working.
It would be easy if thet would be just intranet (REMOTE_HOST ), but I have
some computers that are outside the intranet at the other part of the city,
accessing my .net application over the web?

thanks
Mitja

The REMOTE_HOST value is the IP address of the machine that requested
the page. In the intranet it is your own IP address. In the internet
this is an IP of your router/proxy and usually you will not get the
local IP address. Instead, you may get a public IP of your ISP, a
company which offers the access to the Internet. And this is not
unique.

You can try to get the computer name using the code below. This is
also based on REMOTE_ADRESS value

IPHostEntry hostInfo = new IPHostEntry();
hostInfo=Dns.GetHostByAddress(REMOTE_ADRESS);
string hostname=hostInfo.HostName;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,744
Messages
2,569,482
Members
44,900
Latest member
Nell636132

Latest Threads

Top