String Question

  • Thread starter Thread starter Shapper
  • Start date Start date
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top