Hi,
I wonder if anyone on this list has tried to mix numerical variable, such as 1, 2,3 within an xpath expression.
songList = document.SelectNodes("/music_songs/song[category='" & drop1.SelectedItem.Text & "'][item_number_first<=position()<=item_number_last]")
For some reason, item_number_first and item_number_last appear to have no value in the above code snippet, when they do have values they get printed as in the following:
mess.Text += "Items for page " & page_no & " is: " & item_number_first & " to " & item_number_last & "<br />"
Could anyone please give me some hints on what to modify here to make the numerical data be able to mix within my xpath? Thanks for your help.