rending rdlc report inot pdf file and assigned htmlframe and print directly when frame loads
everything working perfectly but when printng arabic texrt not showing instead some unknown symbol showing in mozilla firefox
but in chrome and explorer its working perfectly
here is my code
Warning[] warnings;
string[] streamids;
string mimeType;
string encoding;
string extension;
byte[] bytes = report.Render("PDF", null, out mimeType,
out encoding, out extension, out streamids, out warnings);
FileStream fs = new FileStream(HttpContext.Current.Request.PhysicalApplicationPath + "output.pdf", FileMode.Create);
fs.Write(bytes, 0, bytes.Length);
fs.Close();
//Open exsisting pdf
//Document document = new Document(PageSize.LETTER);
...
Go to the complete details ...