1

朋友们,我创建了一个应用程序,我尝试将 pdf 文件上传到数据库并从数据库中检索。上传已成功完成。但我无法从数据库中检索该 pdf 文件。请查看我的代码并建议我解决此问题的方法。

 protected void Button1_Click(object sender, EventArgs e)
    {
        SqlCommand cmd1 = new SqlCommand("select Docdata from SaveDoc where DocID='" + TextBox1.Text + "'", con);
        con.Open();
        byte[] b = null;
        SqlDataAdapter da = new SqlDataAdapter();
        DataTable dt = new DataTable();
        da = new SqlDataAdapter(cmd1);
        da.Fill(dt);
        if (dt.Rows.Count > 0)
        {
            b = ((byte[])dt.Rows[0][0]); // Error has came here
            Response.ContentType = "application/pdf";
            Response.BinaryWrite(b);

        }

错误是“无法将'System.String'类型的对象转换为'System.Byte []'类型。”

4

1 回答 1

1

这样做:

  b= Encoding.ASCII.GetBytes(dt.Rows[0][0].ToString());
于 2012-09-12T04:54:09.013 回答