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
IAT patching, problem when calling back to original target function?
mysql_fetch_array error
How to change the encoding of the postgre in the client side using pg_set_client_encoding?
mysql query - version
How to modify vb script to see if the social security number already exists and if so ask weather to add or not.
What is the best way to create an external distribution group in Exchange 2010
Exchange 2003 to Exchange 2010 Migration - Stuck at SSL & URL
Formating Columns in SQL Server 2005
Where do I get MS OEM media for Windows 7 upgrade?
Multiple <html> Tags in Page?