I used this code to grab the page..
Code:
<%
url =
"http://www.svenskfotboll.se/uppland/table.aspx?TournamentId=44851"
set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP")
xmlhttp.open "GET", url, false
xmlhttp.send ""
Response.write xmlhttp.responseText
set xmlhttp = nothing
%>
Shown here http://www2.hemsida.net/sodraupsala/test3.asp
How now do i just view the data from the table???? (ie the league) and then i can use that code in a page to show the league evert time they update
Does it have to be an inStr?
Thanks