con l'oggetto xmlhtml ho recuperato il codice html di una pagina internet senza particolari problemi utilizzando lo script:
<%
Response.Buffer = True
Dim objXMLHTTP, xml

' Create an xmlhttp object:
Set xml = Server.CreateObject("Microsoft.XMLHTTP")
' Or, for version 3.0 of XMLHTTP, use:
' Set xml = Server.CreateObject("MSXML2.ServerXMLHTTP")

' Opens the connection to the remote server.
xml.Open "GET", "http://www.miosito.it", False

' Actually Sends the request and returns the data:
xml.Send

'Display the HTML both as HTML and as text
Response.Write "<h1>The HTML text</h1><xmp>"
Response.Write xml.responseText
Response.Write "</xmp>"

Set xml = Nothing
%>

il mio problema è recuperare però solo una tabella all'interno del codice html......

cercando in giro mi è stato consigliato di usare dell'espressioni regolari per farlo ...ma sinceramente ho capito ben poco......
qualcuno può darmi un consiglio?