<%
Response.Buffer = True
Dim xml
xml = Nothing
xml = Server.CreateObject("Microsoft.XMLHTTP")
xml.Open("GET", "http://www.livescores.net/LiveScore.do?state=promptSoccerLiveScore&gameDate=2007-04-13", False)
xml.Send
Response.Write (xml.responseText)
xml = Nothing
'%>
</body>
</html>
this code bring updated contents when running on my pc but when I try run on server(hosting server) it brings old content..... What is solution ?
Bookmarks