Response.ContentType = "application/pdf";
Response.AddHeader("content-disposition", "attachment; filename=" + Path.GetFileName(theReportName) + ";");
Response.Redirect(theReportName);