Microsoft
Software
Hardware
Network
Question : parsing XMLDOM
in the following code, How do i refer to a particular objFld within objFlds. I can do it using a counter...but id like to grab an objFld value by explicitly using the index.
Set objRows = objRoot.getElementsByTagNa
me("row")
For Each objRow in objRows
strXMLRctr = strXMLRctr + 1
Set objFlds = objRow.getElementsByTagNam
e("field")
For Each objFld in objFlds
strXMLFctr = strXMLFctr + 1
If strXMLFctr = 10 Then
response.write "Transaction Type - " & objFld.text & "*<br>"
End IF
response.write "*strXMLFctr - " & strXMLFctr & " - " & objFld.text & "*<br>"
Next
Next
Set objCols = Nothing
Answer : parsing XMLDOM
will this work???
objFldsValue = objRow.getElementsByTagNam
e("field")
.childNode
s(10).text
;
Random Solutions
How do I enable the Create Email button in Access 2007 forms?
Can send from Windows Live but not from Outlook 2007
Coldfusion Regex find question
Ethernet adapter issue
Using cookies with ASP.NET
ssrs 2008r2 - Oracle 64bit access problem from Report builder 3.0
Recordset giving error invalid operation error
What hardware specs are your SCCM 2007 Servers running?
Excel 2003 used not 2007
How to write my deep copy constroctur?