Connecting Tech Pros Worldwide Help | Site Map

How Can Check Mac Address by ASP Classic ?

Newbie
 
Join Date: Sep 2009
Posts: 3
#1: Sep 1 '09
Hi
I want a example by Asp Classic for Checking Mac Address from Database and User Client .
Thanks
jhardman's Avatar
Moderator
 
Join Date: Jan 2007
Location: logan, utah
Posts: 2,690
#2: Sep 6 '09

re: How Can Check Mac Address by ASP Classic ?


Alan,

I'm not sure I understand you, but all of the data that the server receives from the browser is in a list called the server variables. You can see if it has the information you are looking for by listing all of it:
Expand|Select|Wrap|Line Numbers
  1. for each x in request.servervariables
  2.    response.write x & ": " & request.serverVariables(x) & "<br>" & vbNewLine
  3. next
I do not believe there is any way to find a client's mac address with ASP, but if there is it would be in that list. Hope this helps.

Jared
Reply