SelectSingelNode With Variables - Possible ?

webmasterbeta

New Member
dim stringstring = "ads"set nod = domDoc.SelectSingleNode(string)Is there SOME way of doing this ?to use a string or something inside the "Selectsingelnode" ?My problem is that i wantto chose a single node - without looping throughevery node....like...set nod = domDoc.SelectSingleNode("ads")set nod = domDoc.SelectSingleNode("personal")set nod = domDoc.SelectSingleNode("phone")set nod = domDoc.SelectSingleNode("adress")instead i want something like this....for x = 1 to 40set nod = domDoc.SelectSingleNode(string(x))do something......do something.....nextIs this possible ? Please answer.....
 
Back
Top