我编写了以下代码来处理应该在 Gridview.RowCommand 上发生的文件下载。它适用于我使用过的其他地方(gridview 或类似控件之外的链接按钮)。
此 Gridview 位于 UpdatePanel 内。
Protected Sub gvBikeInsurance_RowDataBound(sender As Object, e As GridViewRowEventArgs) Handles gvBikeInsurance.RowDataBound
If e.Row.RowType = DataControlRowType.DataRow Then
Dim ibtnExportToPDF As ImageButton = TryCast(e.Row.FindControl("ibtnExportToPDF"), ImageButton)
ScriptManager.GetCurrent(Me).RegisterPostBackControl(ibtnExportToPDF)
Dim btnDelete As LinkButton = TryCast(e.Row.Cells(e.Row.Cells.Count - 1).Controls(0), LinkButton)
btnDelete.OnClientClick = "return confirm('Are you sure you want to delete this insurance item');"
End If
End Sub
Protected Sub gvBikeInsurance_RowCommand(sender As Object, e As System.Web.UI.WebControls.GridViewCommandEventArgs) Handles gvBikeInsurance.RowCommand
Select Case e.CommandName
Case "PDFExport"
exportPolicy(e.CommandArgument)
End Select
End Sub
Private Sub exportPolicy(ByVal BikeInsuranceID As Integer)
Dim args As New List(Of MySqlParameter)
args.Add(New MySqlParameter("xbikeinsuranceid", MySqlDbType.Int32))
args(args.Count - 1).Value = BikeInsuranceID
Dim dr As MySqlDataReader = db.execDB("InsuranceFiles_Select", CommandType.StoredProcedure, args.ToArray(), GeneralFunctions.ReturnType.DataReader, False)
Dim output() As Byte
If dr.HasRows Then
dr.Read()
output = dr("filedata")
End If
dr.Close()
Dim outputstr As String = Text.Encoding.ASCII.GetString(output)
Response.Clear()
Response.ClearHeaders()
Response.ContentType = "application/pdf"
Response.AddHeader("Content-Disposition", String.Format("attachment;filename={0}", "Policy Schedule.pdf"))
HtmlToPdf.ConvertHtml(outputstr, Response.OutputStream)
Response.End()
End Sub
系统从表单中捕获用户信息并用它编写 HTML。该 HTML 用于创建一个 PDF 文件,然后应该自动下载该文件。
问题是该文件似乎没有被下载,除非我通过调试器逐步运行它。标准执行只显示 UpdateProgress 内容,该内容会在一段时间后消失。
这里的代码有什么问题吗?尤其是在 RowDataBound 和 RowCommand 例程以及响应的生成中。
任何帮助将不胜感激。
编辑
刚刚在 Chrome 的控制台中发现了这个错误:
未捕获的 Sys.WebForms.PageRequestManagerParserErrorException:Sys.WebForms.PageRequestManagerParserErrorException:无法解析从服务器接收到的消息。