stroing a string into xmlelement and vice versa

  • Thread starter Thread starter deepak
  • Start date Start date
D

deepak

Hi All,

this is a string

"<SXPServerGetObjectsResult><Objects><Task><District Key="258627584">NL
KPN</District></Task></Objects></SXPServerGetObjectsResult>"

i want to store this into a xmlelement variable for further processing
this as xmlelement IN VB.NET

How can i do it?
may u also tell me vicevers i.e. xmelement to string?
Any help would be appreciated by me.

Thanks,
Deepak
(e-mail address removed)
(e-mail address removed)
 
asp.net has this wonderful thing called documentation. if you look up the
class you are interested in, it will give the properties and methods. type
f1 on the variable and you should see the doc, or in the index type
xmlelement.

there you will find the property OuterXml

-- bruce (sqlwork.com)
 
Back
Top