473,399 Members | 2,858 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,399 software developers and data experts.

client user/computer identification

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

Oct 14 '08 #1
2 3189
On Oct 14, 6:43*am, "mitja" <mitja.dec...@fu.uni-lj.siwrote:
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;
Oct 14 '08 #2
"mitja" <mi**********@fu.uni-lj.siwrote in message
news:OB**************@TK2MSFTNGP04.phx.gbl...
I have read a lot of posts on the web and got no answer. Is there any
chance
of getting 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.
Not reliably...
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?
If you absolutely must know from which physical machine your web app is
being accessed, you could look at using client certificates...
http://msdn.microsoft.com/en-us/libr...ntcertificates
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Oct 14 '08 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: hq4ever at 012 dot net dot il | last post by:
a big hello to everyone with your permission i have a few question's regarding php & identification (note identification, not authentication) 1. does every client on the net has a constant...
4
by: HD | last post by:
Hi, I was wondering if there is a way of verifying information that is in the registry of the user's computer??? Or is there a way of checking if a file is on the c:\ of the user's computer?? I...
5
by: wrytat | last post by:
I'm not sure if I'm posting the correct place. I posted it somewhere else, but someone told me to post it at another place. Anyway, some background first. I am currently building a web...
3
by: Caspy | last post by:
I just get stuck on how to check if a user is a member of network (domain). I am building an internal tracking system with ASP.Net with Form authentication. When an user is added into the system,...
4
by: Goh | last post by:
Hi, I would like to know how can we implement a web page that intelligent enough to unique identify that pc have been visit before without any cookies and login user require. I have try...
2
by: WhatHappend | last post by:
I have converted a .Net 1.0 application to .Net 2.0 and the web service invocations have delay of around 10seconds on each intial access. After the first access subsequent access are fast (After a...
15
by: =?Utf-8?B?QmVuamFtaW4gSmFuZWNrZQ==?= | last post by:
Hi, we're struggling with a strange session problem in an ASP.NET 2.0 application. The application is used by our customers to access customer-related information such as invoices over the...
2
by: Wimpie van Lingen | last post by:
Hey I have some more questions with regards to Remoting in .NET 2. I'm using TCP with the Binary formatter. My solution consists of 4 projects: - Class Library containing the server classes...
22
by: Dan Rumney | last post by:
Hi all, I've been writing Javascript for quite a while now and have, of late, been writing quite a lot of AJAX and AJAX-related code. In the main, my dynamically generated pages are created...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.