<% xmlhttp=new ActiveXObject("MSXML2.ServerXMLHTTP") xmlhttp.open("GET","http://www.wunderground.com/cgi-bin/findweather/getForecast?query=brisbane%2C+australia",false); xmlhttp.send() str=xmlhttp.responseText;str=str.substr(str.indexOf('Brisbane')); str=str.split('');Response.Write("Temp="+str[1]); %>