ASP.net C# 用Aspose.pdf实现pdf合并

直接上代码,供参考,备忘!

using System;

using System.Collections.Generic;

using System.Web;

using System.Web.UI;

using System.Web.UI.WebControls;

using System.Data;

using System.Data.SqlClient;

using System.Xml;

using System.IO;

using Aspose.Pdf;

public partial class gxcx_Default : System.Web.UI.Page

{

protected void dyall_Click(object sender, EventArgs e)

{

int x=0;

Document doc, doc1;

doc = new Document();

string djbh;

foreach (GridViewRow gvr in this.grid.Rows)

{

if (gvr.RowType == DataControlRowType.DataRow)

{

var cb1 = (CheckBox)gvr.FindControl("CheckBox1");

if (cb1.Checked == true)

{

djbh = gvr.Cells0.Text;

if (!getpdf(djbh))

continue;

if(x==0)

{

doc= new Document(Server.MapPath("spd.pdf"));

x++;

}

else

{

doc1 = new Document(Server.MapPath("spd.pdf"));

doc.Pages.Add(doc1.Pages);

}

}

}

}

doc.Save(Server.MapPath("spd1.pdf"));

}

}

相关推荐
聪慧的水蜜桃2 小时前
【YFIOs】用C#开发硬件之设备上云
开发语言·c#
hixiong1237 小时前
TensorRT转换工具分享
人工智能·计算机视觉·ai·c#
莫生灬灬9 小时前
DY联系人聊天Web面板支持获取联系人/聊天记录/发送消息
前端·chrome·websocket·c#
不厌 -_-9 小时前
VSCode 中 Markdown 转 PDF
vscode·pdf
逝水无殇10 小时前
C# 多态性详解
开发语言·后端·c#
逝水无殇10 小时前
C# 继承(Inheritance)详解
开发语言·后端·c#
reasonsummer12 小时前
【办公类-130-01】20260628“中级会计实务母题”多个PDF合并一个PDF便于打印
pdf
鲲穹AI超级员工12 小时前
覆盖文档修改批注的电脑端 PDF 编辑工具功能与局限完整记录清单
pdf·文本编辑工具
asdzx6713 小时前
C# 通过模板生成 Word 文档:文本与图片占位符替换完整攻略
开发语言·c#·word
影寂ldy13 小时前
C# 泛型协变与逆变
windows·microsoft·c#