storing data into xml file from asp.net app
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
How to store and display data into xml file insted of sql or oracle DB from asp.net application Thanks in Adv
-
How to store and display data into xml file insted of sql or oracle DB from asp.net application Thanks in Adv
Hi gopalakatla, You can store & retrieve data to xml file using dataset object. In the DataSet class, WriteXml() method which take file name as argument is used to write data as xml data to the file. Through ReadXml() method which take file name as argument is used to read or loaded xml data to DataSet object. If you want operation similar to sql or oracle i.e using query, then you have to write a separate utility class for doing query operation.