Fetch Country, City, region and Ip details Using JavaScript in asp.net
Fetch Country, City, region and Ip details Using JavaScript in asp.net < head runat ="server"> < title ></ title > < script src ="http://code.jquery.com/jquery-1.8.2.js" type ="text/javascript"></ script > < script type ="text/javascript"> var ip, country, city, region function GetInfo(data) { ip = data.host; country = data.countryName; city = data.city; region = data.region; } $( function () { BindUserInfo(); }) function BindUserInfo() { document.getElementById( 'lbl_Ip' ).innerHTML = ip; document.getElementById( 'LBL_COUNTRY' ).innerHTML ...