Text Dosya Download Etmek
Aşağıdaki küçük kod parçası ile, text dosyayı bilgisayarımıza indireceğiz.
Aşağıdaki şekilleri inceleyin.
Şekil 1
Şekil 2
Şekil 3
Partial Class _Default
Inherits System.Web.UI.Page
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Response.ClearContent()
Response.ContentType = "text/plain"
Response.AddHeader("content-disposition", "attachment;filename=download.txt")
’Response.WriteFile(Server.MapPath("download.txt"))
Response.Write("Dosya indirilme tarihi" & ControlChars.NewLine)
Response.Write(Date.Now.ToLongDateString() & " " & Date.Now.ToLongTimeString())
Response.End()
End Sub
End Class
Bir sonraki makalede buluşmak üzere. Bahadır ŞAHİN