views:

288

answers:

1

As the topic says - for the purpose of maintaining a session state, I'm debating whether it is - or not - possible to obtain a MAC address of a network card of the machine that's connecting to the website ?

What are any other machine specific - values that can be obtained for the purpose of identifying an individual machine ?

+1  A: 

From ASP.NET you can't find the MAC address of the request. The best thing you can do is generate a guid and send it as a cookie if it doesn't exist yet.

ZippyV