Hi i am using Microsoft XMLHTTP to get some data off another site. it puts the pages sourcecode into responsepage how can i strip response page so it begins with
<!-- Table no 1 -->
at the top, ends with the following
</table>
My script that i am using folows
<%
GotothisURL = "http://urltoget"
Set GetConnection = CreateObject("Microsoft.XMLHTTP")
GetConnection.Open "get", GotothisURL, False
on error resume next
GetConnection.Send
' ResponsePage is the response we will get when visiting GotothisURL
ResponsePage = GetConnection.responseText
response.write(responsepage)
Set GetConnection = Nothing
%>