0

gridview データを Excel にエクスポートしようとしています。

しかし、私はエラーが発生Property Evaluation FailedしていますResponse.End()

これは私のコードです - 何かアイデアはありますか?

Private Sub ExportGridToExcel()
Try
Response.Clear()
Response.AddHeader("content-disposition", "attachment;filename=NPS.xls")
Response.ContentType = "application/vnd.ms-excel"
' Remove the charset from the Content-Type header.
Response.Charset = ""

' Turn off the view state.
Me.EnableViewState = False

Dim tw As New System.IO.StringWriter()
Dim hw As New System.Web.UI.HtmlTextWriter(tw)

' Get the HTML for the control.
gvNPSResults.RenderControl(hw)
' Write the HTML back to the browser.
Response.Write(tw.ToString())
' End the response.

HttpContext.Current.ApplicationInstance.CompleteRequest()
Response.End()
Catch ex As Exception
'Throw ex
End Try
End Sub
4

1 に答える 1

0

コードを置き換えてもう一度お試しください

HttpContext.Current.ApplicationInstance.CompleteRequest();

Response.End();

 Response.Flush();
 Response.Close();
于 2012-09-30T04:34:27.503 に答える