Newbie to Xpath needs help

K

Keith B

If postion() is an xpath expression for the sequence of the current node,
what is a valid xpath expression that represents the same information
regarding the parent of the current node?

Thanks,

Keith
 
I

Info Path

Parent = ..
current = .

../@name --> current node property name
.../@id --> parent node property id
 
Top