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 TouchToneTommy 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: *

  1. brakkie2

    asp and xml

    Hi got it going this way of some code I found somewhere Thanks you help a lot cheers. Set xmlDoc = Server.CreateObject("msxml2.DOMDocument") ' Allow the document to complete loading xmlDoc.async = False success = xmlDoc.LoadXml(xmltext) If success = True Then Set root =...
  2. brakkie2

    asp and xml

    Seems I'm either shorting something to be installed on my server cause I coppied your example strate as is and still geting the same freakin error Microsoft VBScript runtime (0x800A01A8) Object required: 'getElementsByTagName(...).item(...)'
  3. brakkie2

    asp and xml

    That seems logical but I get this error Microsoft VBScript runtime (0x800A01A8) Object required: 'xmlDoc.getElementsByTagName(...).item(...)' /callcenter/DisplayFileXml.asp, line 24 Im assuming by NodeID I have to put the element name
  4. brakkie2

    asp and xml

    Ok this is my asp code so far <% Response.Buffer = True Dim objXMLHTTP, xml ' Create an xmlhttp object: Set xml = Server.CreateObject("Microsoft.XMLHTTP") key = Request.QueryString("key") ' Opens the connection to the remote server. xml.Open "GET"...
  5. brakkie2

    xml to asp?

    Hi below is the xml data I get from a an asp page running on a server this asp page does a db query and senf this back. OK great so I've got this but how do I make sense of this xml so that i can write it into db on my machine. I'm anly familiar with asp and ado so please go slow. Thanks <xml...
  6. brakkie2

    Microsoft ADO/RDS (0x800A1004) Business object cannot be created.

    Hey all mayby you can help me this piece off code creates set rs = Server.CreateObject ("ADODB.Recordset") rs.Open strsql, conn, 1, 2 this problem Microsoft ADO/RDS (0x800A1004) Business object cannot be created the connections sting looks like this xDb_Conn_Str = "Provider=MS Remote;"...

Part and Inventory Search

Back
Top