How to identify the client computer?

  • Thread starter Thread starter Manu
  • Start date Start date
M

Manu

To login into my web site the user has to supply a username and a
password.
As the application is a commercial one I would like to enable the
customer to connect to the site only from the machine located at his
office and not from home.
How can I identify the actual machine he is logging in from? I would
like not to use cookies as this mechanism is unreliable.
 
Hi, Manu!
How can I identify the actual machine he is logging in from? I would
like not to use cookies as this mechanism is unreliable.

Install sertificate on client machine and use SSL for mashine/client
identity.
 
Hi Manu,

Then you can only check the client IP , you can access it using
Request.UserHostName or Request.UserHostAddress

Hope this help,
 
Back
Top