Posts

Showing posts from December, 2017

How to find client's MAC Address in Asp.Net and C#.net

For Web Application using System.Runtime.InteropServices; [DllImport("Iphlpapi.dll")]     private static extern int SendARP(Int32 dest, Int32 host, ref Int64 mac, ref Int32 length);     [DllImport("Ws2_32.dll")]     private static extern Int32 inet_addr(string ip); protected void Page_Load(object sender, EventArgs e)     {         try         {             string userip = Request.UserHostAddress;             string strClientIP = Request.UserHostAddress.ToString().Trim();             Int32 ldest = inet_addr(strClientIP);             Int32 lhost = inet_addr("");             Int64 macinfo = new Int64();             Int32 len = 6;             int res = SendARP(ldest, 0, ref macinfo, ref...