Hi,
I am trying to extract certain information from a website, possibly using ServerXMLHTTP.
However, data is presented only after you click a link (initiate a javascript function). The script which pulls this info is not accessible remotely.
How could I trigger that javascript function...
Hi,
Thank for replying. Maybe I should have added few extra details.
The script uses, among other things, psexec in order to execute certain set of commands on Windows based machines.
I like the idea you have proposed, but that would mean I would need to trigger this script through other...
Hi,
I have a script which takes ~20 minutes to fully process and it runs in the background. I want to be able to run multiple instances of this script at the same time, all initiated manually through a webpage.
I use Microsoft.XMLHTTP to send an asynchronous request, however once the first...
Thanks guys.
When I use:
myarray = rs.GetRows()
dim total
total = 0
for i=0 to UBOUND(myarray)
total = total + CINT(myarray(i))
next
response.write total
I get:
Subscript out of range: 'myarray'
I get the same problem when I use the code Sheco posted.
Thanks Chopstik.
I'm having the problem with the following code:
resultsQ1=0
columnLoopA=0
myrecordset = rs(0)
myarray = rs.GetRows()
results=split(myarray,",")
WHILE columnLoopA < 6
resultsQ1 = resultsQ1 + results(columnLoopA)
columnLoopA = columnLoopA + 1
WEND
I keep getting...
Hi,
I'm very new to ASP and have been trying to figure how to do this for a while now. I have an array taken from recordset using GetRows() and I wish to do a numeric addition of all the numbers in the array so that I get a total value.
eg. array elements are 1,2,3,4,5
total = 1+2+3+4+5...
Perhaps my lack of knowledge.
When I use:
heading = xml.documentElement.childNodes(0).text
response.write (heading)
I get "SetupK Start", and if I use:
heading = xml.documentElement.childNodes(1).text
response.write (heading)
Microsoft VBScript runtime error '800a01a8'
Object required...
Hi guys,
I have a bit of a problem and I can't seem to fix it. My XML file looks like this:
<?xml version="1.0"?>
<method>
<par>
<joint>
<name>SetupK</name>
<value>Start</value>
</joint>
</par>
</method>
I want to be able to assign the "Start" in <value></value> to a...
I have a bit of a problem which I can't seem to solve. I have a very simple script connecting to a remote server. It connects fine, however if I use "Administrator" account in IIS for the anon. access, it runs as it should. If I use anything else, I get an access denied error. The account I am...
No, not really. ICMP is filtered by the firewall. However, as I've said, I am able to telnet to MSSQL port just fine (as well as connect to some other services, as well as on the "Default Website" that's running off IIS on the SQL server).
Hi everyone,
First time poster here. I've been Googling around for quite a bit without any actual success to resolution of my problem.
I am using osql to connect to my remote MSSQL server and that's when the problem starts. I am able to get a prompt for password and telnet to 1433 just fine...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.