XML updation

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • VijayaRX
    New Member
    • Sep 2008
    • 1

    XML updation

    Hi,

    I have an XML. I am taking some nodes from the XML and populating them in a datagrid. After i update those columns, i need to update them back to the same XML. My code is in C#.Net
  • PRR
    Recognized Expert Contributor
    • Dec 2007
    • 750

    #2
    Originally posted by VijayaRX
    Hi,

    I have an XML. I am taking some nodes from the XML and populating them in a datagrid. After i update those columns, i need to update them back to the same XML. My code is in C#.Net
    On of the most easiest way is to serialize a class object...The class can reflect your database table.... You could de-serialize and serialize class object..in the class you could use collections or data table ....

    Comment

    Working...