Convert Excel to XML
XML / XSL
1
Posts
1
Posters
0
Views
1
Watching
-
I am trying to convert Excel to XML. For that I have done the 1st step of saving Excel to the dataset dsSource. Now I am trying to convert data from the dataset dsSource to XML document and I am having problems doing that. I get an error "the name 'dsSource' does not exist in the current context" #region private dsSource GetXml() string Xml = dsSource.GetXml().ToString; #endregion Any suggestions??