public void Export(string ids) { var listId = JsonConvert.DeserializeObject <List <int> >(ids); var initiatives = _initiativeService.GetByIds(listId); Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); builder.PageSetup.Orientation = Orientation.Landscape; Font font = builder.Font; font.Size = 13; font.Bold = true; font.Name = "Arial"; var headerTemplate = "<p style='text-align:left;'> UBND TỈNH QUẢNG NAM " + " " + "CỘNG HÒA XÃ HỘI CHỦ NGHĨA VIỆT NAM</strong></p>" + "<p style='text-align:left;'><strong><span style='text-decoration:underline;'> SỞ KHOA HỌC VÀ CÔNG NGHỆ</span>" + " " + " " + "<span style='text-decoration:underline;'> Độc lập -Tự do -Hạnh phúc </ span ></ strong ></p></br></br>" + "<p style='text-align:center;'><strong> DANH MỤC SÁNG KIẾN THUỘC LĨNH VỰC QUẢN LÝ VÀ HOẠT ĐỘNG ĐOÀN ĐỘI</strong></p></br>"; builder.InsertHtml(headerTemplate); Table table = builder.StartTable(); builder.InsertCell(); builder.Write("TT"); // Insert a cell builder.InsertCell(); builder.Write("Tên sáng kiến"); // Insert a cell builder.InsertCell(); builder.Write("Mô tả sáng kiến"); // Insert a cell builder.InsertCell(); builder.Write("Ý kiến tổ thẩm định"); builder.InsertCell(); builder.Write("Điểm trung bình Tổ thẩm định"); builder.EndRow(); var count = 1; font.Bold = false; foreach (var initiative in initiatives) { // Insert a cell builder.InsertCell(); builder.Write(count.ToString()); // Insert a cell builder.InsertCell(); builder.Write(initiative.Title); // Insert a cell builder.InsertCell(); builder.InsertHtml(GetInitiativeInfo(initiative)); // Insert a cell builder.InsertCell(); builder.Write(""); builder.InsertCell(); builder.Write(""); builder.EndRow(); count++; } builder.EndTable(); var fileName = "danh_sach_de_tai.docx"; doc.Save(System.Web.HttpContext.Current.Response, fileName, ContentDisposition.Inline, null); System.Web.HttpContext.Current.Response.End(); }