1) write an active/x control that lookup up the mac address
2) write a .net control hosted by browser (will require user configure full
trust)
3) if the clients are on the local lan, ask the dhcp or wins servers for the
transaction
ManagementClass mc = new ManagementClass("Win32_NetworkAdapter");
foreach (ManagementObject mo in mc.GetInstances())
{
string macAddr = mo["MACAddress"] as string;
if ( macAddr != null && macAddr.Trim() != "" )
return macAddr.ToString();
}
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.