1
Answer

Using Variables in XPath Expressions

Ask a question
ms236

ms236

20y
1.4k
1
I have a textBox that contains a string values. I need to take this string and use it as criteria for an XPath Expression. Here's what I have. Why isn't it working??? string s = textBox1.Text; XPathExpression expr; expr = myXPathNavigator.Compile("/NewDataSet/note[@to=$s]"); ----Matt

Answers (1)