C:\Users\AppData\Local\Temp\tmp34A8.pdf
I got above error while I wrote this code on c# windows application .........
img5 = (byte[])resultTable.Rows[0]["image5"];
if (img5.Length != 0)
{
axAcroPDF1.Refresh();
string spathfile = System.IO.Path.GetTempFileName();
System.IO.File.Move(spathfile, System.IO.Path.ChangeExtension(spathfile, ".pdf"));
spathfile = System.IO.Path.ChangeExtension(spathfile, ".pdf");
System.IO.File.WriteAllBytes(spathfile, img5);
axAcroPDF1.LoadFile(spathfile);
}