We have three computers, all in the same network.
I need to get the MAC Address of these computers when the users connect to my web application. The users use these three computers.
I've tried with:
Function getMacAddress()
Dim nics() As NetworkInterface =
NetworkInterface.GetAllNetworkInterfaces
Return nics(0).GetPhysicalAddress.ToString
End Function
But, that code returns the MAC Address of the server.
Thanks.
The solution in: Get a machines MAC address on the local network from its IP in C# throws me the same error: I got the IP address and MAC address of the server.