Posted on: 8/3/2014 7:45:27 AM | Views : 470

I am using pdf file to implement print functionality in my project
but when different user(sometime same user)  from different location click print  button at the same time  pdf file not creating but if they are click at different time it is working fine
am using these code 
public static void printPdf(LocalReport report, HtmlIframe frmPrint, string Path) { 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); try { File.Delete((HttpContext.Current.Request.PhysicalApplicationPath + "Print.pdf")); if (HttpContext.Current.Request.PhysicalApplicationPath != null) ...

Go to the complete details ...