投稿者 るきお  (社会人) 投稿日時 2020/5/30 14:49:20
このプログラムで試したところ特にエラーにはなりませんでした。
エラーになるプログラムの全体を教えていただけますか?

Public Class WebForm1
    Inherits System.Web.UI.Page

    Protected Sub Page_Load(ByVal sender As ObjectByVal e As System.EventArgs) Handles Me.Load

        Dim encode As System.Text.Encoding
        Dim td2 As String
        td2 = "M_Test.CSV"
        encode = System.Text.Encoding.GetEncoding("Shift-JIS")  '文字コードにShiftJISを指定。(UTF8の場合は指定不要) 
        Response.AppendHeader("Content-Disposition""attachment; filename=" + Server.UrlEncode(td2))
        Response.ContentEncoding = System.Text.Encoding.GetEncoding("shift_jis")
        Response.ContentType = "text/csv"
        Response.Write("Death Data")

    End Sub
End Class