S
Shapper
Hello,
I have this:
Dim news As New XmlDocument()
news.Load(Server.MapPath("xml/news.rss"))
Dim x As String = news.SelectSingleNode("editor/name").InnerText
lrsslabel.Text = x
It works. However when I replace last 2 lines as follow it doesn't work:
lrsslabel.Text = news.SelectSingleNode("editor/name").InnerText
Why? How to solve it without needing to declare the x variable?
Thanks,
Miguel
I have this:
Dim news As New XmlDocument()
news.Load(Server.MapPath("xml/news.rss"))
Dim x As String = news.SelectSingleNode("editor/name").InnerText
lrsslabel.Text = x
It works. However when I replace last 2 lines as follow it doesn't work:
lrsslabel.Text = news.SelectSingleNode("editor/name").InnerText
Why? How to solve it without needing to declare the x variable?
Thanks,
Miguel