Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: logx
  • Order by date
  1. logx

    Trying to get website data

    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...
  2. logx

    ASP/Microsoft.XMLHTTP asynchronous request

    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...
  3. logx

    ASP/Microsoft.XMLHTTP asynchronous request

    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...
  4. logx

    Numeric addition from an array

    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.
  5. logx

    Numeric addition from an array

    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...
  6. logx

    Numeric addition from an array

    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...
  7. logx

    Newbie, help with sorting output

    Some things seem so complicated, yet... Thank you!!
  8. logx

    Newbie, help with sorting output

    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...
  9. logx

    Newbie, help with sorting output

    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...
  10. logx

    Control remote DCOM using ASP under specific account

    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...
  11. logx

    Problem when connecting remotely

    I guess I'll have to seek my answers elsewhere.
  12. logx

    Problem when connecting remotely

    As I've said, any help is appreciated. :)
  13. logx

    Problem when connecting remotely

    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).
  14. logx

    Problem when connecting remotely

    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...

Part and Inventory Search

Back
Top