The Currenry Symbol is stripped off

Hi,

I trying to print the content which as currency symbol, but it is stripped off in the output.

In the Database the text is "nearly £100,000", but when document is generated from aspose word, £ Symbol is missing. is prints "nearly 100,000".

Regards

Dowjones Team

Thanks for reporting this issue to us.

I have checked it with the following code

Document doc = new Document();

DocumentBuilder builder = new DocumentBuilder(doc);

builder.Writeln("nearly £100,000");

string filename = Application.StartupPath + @"\PoundTest.doc";

doc.Save(filename);

and it gives the correct output in the resulting document.

Please send us the code snippet and template documents sufficient to reproduce the error.

Hi,

The whole text with currency symbol is stored in Database. when it is comming from DB it have Currency symbol but when it doument is generated, symbol is stripped off or changed to comes a junk character.

Regards

DowJones Team

Please send us something that will help to reproduce the error. We cannot start working on this issue without being able to reproduce it.

Thanks for understanding.