We are in a situation to get client Local IP (not global ip) to be retrieved through ASP.Net Application.
We found that it is not possible to get this through server, so we had tried to achieve this with
$(document).ready(function () {
$.get('http://jsonip.com', function (res) {
$('p').html('IP Address is: ' + res.ip);
});
});
but we are getting Global IP, we need local ip address, can anyone help us with a solution, thanks in advance.