how to attach database object to textwriter
-
i have a database object which retrieves all the data. and i have the xml file(excel format) in textwriter mode. how can i attach dtaset to xml file and i want to transform that using xsl file can any body know this pls help me thanks satya
Hi, This is not a solution to your question, I have a similar problem where I need to export to Excel from a database. I am having no success. Please if you have a solution please can you let me know. Regards ma se
-
Hi, This is not a solution to your question, I have a similar problem where I need to export to Excel from a database. I am having no success. Please if you have a solution please can you let me know. Regards ma se
Hi i am using c#.net this is my code may be it is helpfull to u. XmlDataDocument xdd= new XmlDataDocument(dataset object ) XslCompiledTransform xt=new XslCompliedTransform() xt.load("~/.xsl"); XslArgumentlist xal=new XslArgumentlist(); xt.transform(xdd,xal,response.output); if u r using c# this is helpfull to u and add response.contenttype,response.addheader thanks