I'm a bit of a noob at asp/vbs but I'm trying to make an asp file that will do the following
1. connect to the managment page for my cable modem (I think I've acheved this part but I think they way I did it is sloppy)
2. grab the html of the stats page (I think I have this with the following)
Sub retrive()
Set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP")
xmlhttp.open "GET", loginurl, 0
xmlhttp.send ""
xmlhttp.open "GET", dataurl, 0
xmlhttp.send ""
wscript.Echo xmlhttp.responseText
Set xmlhttp = Nothing
end sub
but then I want to grab 12 numbers that are in the dataurl page
var CmDownstreamChannelPowerdBmVBase = "6.094537|6.149992|5.939103|-9.412262";
var CmDownstreamSnrBase = " 35.972961| 35.779911| 35.595078| 15.302930";
var CmUpstreamChannelPowerBase = " 46.7500| -1.0000| -1.0000| -1.0000";
and then display the values in a table (I have the table part but its the part about getting the 12 numbers out and into variables
can someone help?
I'm not at home right now so I can't get the full asp that I have so far