vote up 0 vote down star

With my other question: http://stackoverflow.com/questions/1672750/c-showing-multiple-xml-data-entires-with-the-same-node-value

I have one more question, in the part:

XmlNodeList allNodes = doc.SelectNodes("/Lessons/Lesson[Date='01/01/2010']");

Is there a way to put a string with a value in it (that I already have setup) in the part '01/01/2010'?

flag

48% accept rate
do you mean use a variable as opposed to a literal value? var myDate = "'01/01/2010'"; and then XmlNodeList allNodes = doc.SelectNodes("/Lessons/Lesson[Date=myDate]"); – Matt Nov 4 at 23:55

1 Answer

vote up 2 vote down check

This simple change would do...

string yourstring = "01/01/2010";

XmlNodeList allNodes = doc.SelectNodes("/Lessons/Lesson[Date='" + yourstring + "']");
link|flag
Thanks! Perfect! – The Woo Nov 4 at 23:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.