Posted on May 7, 2008 by balanagaraj
document.all
Internet Explorer 4 introduced the document.all DOM (document object model) to allow access to the various parts of the web page. Soon after that the standard DOM method getElementById was introduced and is therefore available in all version 5+ browsers. This means that the document.all references are only needed to support IE4.
document.all doesn’t work mozilla [...]
Filed under: Javascript, Mozilla Firefox, Web Application | Tagged: Internet Explorer, Javascript browser compatibility, Javascript Differences in Mozilla Firefox and Internet, Javascript does not working in mozilla firefox, Mozilla Firefox, Mozilla Firefox and internet explorer, Mozilla Firefox bugs, Mozilla firefox does not supports DOM, Mozilla Firefox does not supports javascript functions | 8 Comments »
Posted on January 7, 2008 by balanagaraj
How can get the user’s country name using IP address in Classic ASP and Javascript?
http://www.webservicex.net provides web services for get the country name based on ip address.
In ASP using javascript we can achieve the task.
Step1 : Refer the webservice using SOAPClient object
var strUrlForwebservicex = http://www.webservicex.net/geoipservice.asmx?wsdl
var objSoapClient = Server.CreateObject(’MSSOAP.SoapClient30′
objSoapClient.ClientProperty(”ServerHTTPRequest”
= true;
objSoapClient.MSSoapInit(strUrlForwebservicex);
Step2 : Get user’s IP address
var strIPAddress [...]
Filed under: ASP, Javascript, Web Application, WebService | Tagged: Get User's Country Name Using IP Address, Get User's Country Name Using IP Address in ASP, Get User's Country Name Using IP Address in ASP and Jav, Get User's Country Name Using IP Address in Javascript, Get user's IP adress in ASP, Refer the WebService in ASP, Using SOAPClient in ASP and Javascript | 4 Comments »