链接到pdf文件(asp.net)

时间:2009-11-27 07:45:47

标签: c# asp.net

我已使用文件上传将pdf文件保存到数据库。现在我想从数据库中检索pdf文件,它必须链接到动态创建的链接按钮。所以对于每个链接按钮,我都有一个链接到它的pdf文件。 - 如何使用C#

在asp.net中执行此操作

2 个答案:

答案 0 :(得分:2)

我会编写一个通用处理程序,它将从给定的id:

中获取数据库中的PDF
public class PdfHandler : IHttpHandler
{
    public void ProcessRequest(HttpContext context)
    {
        int id;
        if (int.TryParse(context.Request["id"], out id)) 
        {
            id = 0;
        }

        var connectionString = ConfigurationManager.ConnectionStrings["some_db"].ConnectionString;
        using (var connection = new SqlConnection(connectionString))
        using (var command = connection.CreateCommand())
        {
            connection.Open();
            command.CommandText = "select image from some_table where image_id = :id";
            command.Parameters.AddWithValue("id", id);
            using (var reader = command.ExecuteReader())
            {
                if (reader.Read()) 
                {
                    context.Response.ContentType = "application/pdf";
                    var cd = new ContentDisposition();
                    cd.FileName = "test.pdf";
                    cd.Inline = true;
                    context.Response.AddHeader("Content-Disposition", cd.ToString());

                    long bytesRead;
                    int size = 1024;
                    var buffer = new byte[size];
                    long dataIndex = 0;
                    while ((bytesRead = reader.GetBytes(0, dataIndex, buffer, 0, buffer.Length)) > 0)
                    {
                        var actual = new byte[bytesRead];
                        Buffer.BlockCopy(buffer, 0, actual, 0, (int)bytesRead);
                        context.Response.OutputStream.Write(actual, 0, actual.Length);
                        dataIndex += bytesRead;
                    }
                }
                else
                {
                    context.Response.ContentType = "text/plain";
                    context.Response.Write("Not found");
                    context.Response.StatusCode = 404;
                }
            }
        }
    }

    public bool IsReusable
    {
        get { return false; }
    }
}

在aspx页面中,只需添加引用此处理程序的锚点:

<a href="/PdfHandler.ashx?id=1">pdf 1</a>
<a href="/PdfHandler.ashx?id=2">pdf 2</a>
<a href="/PdfHandler.ashx?id=3">pdf 3</a>
...

答案 1 :(得分:1)

首先,你必须从数据库中读取记录。

假设您有以下表格结构:

Id,Name,BinaryPdfData

您使用ADO.NET,Linq2SQL或您正在使用的任何“SELECT”Id和Name 进入IEnumerable(例如List或DataSet)。

然后将它绑定到ItemTemplate所在的ASP Repeater 包含一个LinkBut​​ton和Click事件背后的代码 然后将您重定向到某个下载页面,例如“downloadpdf.aspx?id = {0}”

其中{0}是记录的ID。

download.aspx页面从数据库中读取指定的记录 并将二进制pdf数据放入缓冲区数组中。

接下来,您必须设置内容类型等...

我没有时间建立一个好的例子,但你可能需要这个:

Response.Clear()

//set the content type to PDF
Response.ContentType = "application/pdf"

//add content type header 
Response.AddHeader("Content-Type", "application/pdf")

//set the content disposition
Response.AddHeader("Content-Disposition", "inline;filename=helloworld.pdf")

//write the buffer with pdf file to the output
Response.BinaryWrite(Buffer)

Response.End()