sql to xml
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
how to convert sql database into xml form in asp.net + c#. Please give me some links. Thanks in advance .
Hi, You could use this stored procedure to convert the SQL Tables into xml sp_makewebtask You can have a look at this procedure from SQL books online. Also you can export the contents of datatable using the code. First you have to create a typed dataset, and then you fill the contents to the datatable in the dataset and then use the method dataset.writexml to fullfill your requirement Hope i have helped you out, Happy Programming