Hi,
what about:
IXMLDOMNode oNode =
thisXDocument.DOM.selectSingleNode("/my:myFields/my:TextBox");
string sSQL = "Select * from tblTest where Test = '" + oNode.text + "'";
Regards,
Franck Dauché
> I would like the value of a text box to be used as part of the SQL
> SELECT statement along the lines of SELECT * FROM TABLE WHERE FIELD =
> "Text Box Value".
> I have tried using "/my:myFields/my:TextBox" however I am obviously
> doing something wrong.
> Could someone please help?