Click here to Skip to main content
15,896,432 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Friends ,

I am Trying to Send mail .Where What i Dod is Passwd a Query Example Select PRoduct name From Rakesh Then In My data set ds= new Datset();
Ds Conatin my Output . Til tere no iSsue .

Now Tell me if Mail.Body=ds if i will do As output in my inbox I am getting Using System.Dataset.
I neeed the Output in a Wriiteen Format . Like In my mAil it should have the value i have fetched from Select PRoduct name From Rakesh..plz help .
Posted

Hey Rakesh,

Dataset supports a method called writexml.

C#
StringWriter sw = new StringWriter();
ds.WriteXml(sw);
string result = sw.ToString();


Now you can define a XSL the way you want data.

You can use the following method to transform xml to html using xsl:

C#
public static string TransformXMLToHTML(string inputXml, string xsltString)
{
    XslCompiledTransform transform = new XslCompiledTransform();
    using(XmlReader reader = XmlReader.Create(new StringReader(xsltString))) {
        transform.Load(reader);
    }
    StringWriter results = new StringWriter();
    using(XmlReader reader = XmlReader.Create(new StringReader(inputXml))) {
        transform.Transform(reader, null, results);
    }
    return results.ToString();
}


May this ref help you: http://msdn.microsoft.com/en-us/library/8fd7xytc(v=vs.100).aspx[^]

Thanks,

Kuthuparakkal
 
Share this answer
 
v2
hello rakesh,

you are trying to assign the data set result to mail body,
but mail body accepts only the string values, so you have to fetch the result in a string, and then assign to mail body,

may be it will work..
 
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