ms236

ms236

  • NA
  • 2
  • 0

Using Variables in XPath Expressions

Jan 28 2004 9:35 PM
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