User1503477839 posted
Hi,
In my application and using a third party component api and it is used in my web service.
everything is fine but my thirt party tool create a pdf file when we do some operation.
i get that pdf as byte array..
now i want that to be me body of my mail..
i tried to convert it to stirng with
System.Text.ASCIIEncoding oASCIIEncoding = new System.Text.ASCIIEncoding();
string strinvoice = oASCIIEncoding.GetString(bInvoice);
i get some unknown script like data not the proper data
i want this to be done ..i just want the content in byte array to be converted to string or array..
PLz help me thanks in advance