Click here to Skip to main content
15,895,011 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i have to develop a security pass for my company,using the following code
C#
protected void EmpSC_Click(object sender, EventArgs e)
        {
            EmployeeSpDataSet dataset = new EmployeeSpDataSet();
            StringBuilder sb = new StringBuilder();
            var AllEmp = _service.GetAllEmployeeDuty().OrderByDescending(x => x.EndDate).GroupBy(x => x.Employee_Id).Select(x => x.First()).Take(3).ToList();
            if (AllEmp != null)
            {
                for (int i = 1; i <= 3; i++)
                {
                    var empsp = AllEmp.FirstOrDefault();
                    var emp = _service.GetAllEmployee().Where(x => x.Id == empsp.Employee_Id).FirstOrDefault();
                    dataset.EmployeeScpass.Rows.Add(emp.Id,
                        emp.Name,
                        emp.Cnic,
                        empsp.ToSectorName,
                        emp.ImgBody, ""
                        );
                    sb.Append("<table id=\"spcards\"; style=\"height:324px; width:1008px\">");
                    sb.Append("<tr>");
                    sb.Append("<td>");
                    sb.Append("<table style=\"height:323px; width:504px; background-image:removed(../Images/PassFront.jpg)\">");                    
                    sb.AppendFormat("<td><img src=\"EmpPicture.ashx?id={0}\" style=\"height:200px; width:200px; margin-top:41px; margin-left:17px;\" /></td>", emp.Id);
                    sb.Append("<td ><table style=\"height:20px;margin:30px;\">");
                    sb.AppendFormat("<tr style=\"height:116px;margin:30px;\"><td> </td><td>{0}</td></tr>", emp.Name);
                    sb.AppendFormat("<tr style=\"height:26px;\"><td> </td><td>{0}</td></tr>", emp.Cnic);
                    sb.AppendFormat("<tr style=\"height:95px;\"><td> </td><td>{0}</td></tr>", empsp.ToSectorName);
                    sb.AppendFormat("<tr style=\"height:13px;\"><td> </td><td>{0}</td></tr>", emp.Id);                                    
                    sb.Append("</table></td></tr><tr><td></td><td></td></tr></table></td>");
                    sb.Append("<td>");
                    sb.Append("<table style=\"height:323px; width:504px; background-image:removed(../Images/PassBack.jpg)\">");
                    sb.Append("</table></td></tr></table><br/>");
                    AllEmp.Remove(empsp);
                }

                spcards.InnerHtml = sb.ToString();

            }
Posted

1 solution

Try answers at Html to PDF conversion using c#[^].

There are various third party tools available too - http://www.html-to-pdf.net/Support.aspx[^].
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900