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

    loadXML not loading

    I figured it out. There was an "&" in one of my columns. I used the .replace("&","&") method and everything is great! Thanks for you help!!! Smith
  2. Smith3

    loadXML not loading

    Can you explain this to me? I wasn't getting this error before but now I am getting.... Whitespace is not allowed at this location. Error processing resource 'http://... Line 1, Position 365 Where do I look for Line 1, Position 365 in the xml string? Smith3
  3. Smith3

    loadXML not loading

    I noticed that before each string column I have a space. Would that do it? I know &quot;&&quot; will but will spaces? Here is the xml file... <?xml version=&quot;1.0&quot;?><ResultSet><Row><Column>204</Column><Column> TTL FIXED...
  4. Smith3

    loadXML not loading

    I tried this and the load still didn't work. objXmlData = 0 rootNode = 0 var objXmlData = Server.CreateObject(&quot;MSXML2.DOMDocument&quot;) I even tried to create a new variable call objXmlData2 and the still failed. Is there something that I am missing? Smith3
  5. Smith3

    loadXML not loading

    How do I release the old variable and initialize it again? Which variable do I do this to? Thanks for the help! Smith3
  6. Smith3

    loadXML not loading

    Hello All, I have an ASP page that performs an sql call to get data for a second sql call. The first loads fine but when I try to load the second set of xml data the load is unsuccessful. Here is the line to load the xml data... success = objXmlData.loadXML(objXmlHttp.responseXML.xml) This...
  7. Smith3

    ASP loadXML not loading

    I didn't see the MIME header in my asp. I am new to asp and I received this asp from another person. Where would I find the MIME header? The first sql statement works fine, it's the second sql statement that does not load. I am using loadXML so I can access each child object. Like so...
  8. Smith3

    ASP loadXML not loading

    I have an asp page making multiple sql calls to the server and the second loadXML is coming up false. Here is how I am loading the xml document. success = objXmlData.loadXML(objXmlHttp.responseXML.xml) I checked the objXmlHttp.responseText and it has the data I was trying to get but it won't...

Part and Inventory Search

Back
Top