Click here to Skip to main content
16,011,358 members
Please Sign up or sign in to vote.
3.00/5 (1 vote)
See more:
Hi,

how to export dataset data to xml to encrypted format through c#

thanks
Posted

Encrypt and decrypt DataSets to XML files[^] should help you out.

This[^] might help as well.
 
Share this answer
 
Hi,

You can write directly xml file from dataset. after that you can encrypt your xml file using any of the encryption algorithm.

C#
DataSet dset = new DataSet();
dset.WriteXml(xmlfilepath);
// encrypt xml file and send over network.


although its not full code with encryption but it may help you.

thanks
-Amit.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900