I have used the below code to get client computer name, however it work for some of the clients and some of the client get error
string IPAdd = Request.UserHostName;
IPHostEntry hostEntry = Dns.GetHostEntry(IPAdd);
string compName = hostEntry.HostName;
No such host is known.
Line 33: string IPAdd = Request.UserHostName;
Line 34: IPHostEntry hostEntry = Dns.GetHostEntry(IPAdd); <-- Throws error
Please help, thanks.