在MVC上打开带有表单文本框 ASP.NET PDF文件
本文关键字:文本 ASP NET 文件 PDF 表单 MVC | 更新日期: 2023-09-27 18:32:00
我需要打开一个pdf文件,表单上包含表单texbox。我使用此代码打开 pdf 文件。
`StreamReader streamReader = new StreamReader(GridView1.Rows[index].Cells[1].Text);
Stream stream = streamReader.BaseStream;
BinaryReader binaryReader = new BinaryReader(stream);
byte[] sendbyteArray =binaryReader.ReadBytes(Convert.ToInt32(binaryReader.BaseStream.Length));
Response.ContentType = "application/pdf";
Response.AddHeader("Content-Type", "application/pdf");
Response.AddHeader("Content-Disposition", "inline");
Response.BinaryWrite(sendbyteArray);
Response.End();`
这是有效的。一旦 pdf 文件显示,我需要在 pdf 上方添加一个文本框。这可能吗?请指教。谢谢
据我所知,这是不可能的,但如果您分享该文本框的目的是什么,我们可以想到另一种解决方案。