Text Dosya Download Etmek-Asp.Net

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

About Bahadır Şahin

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.

0 comments:

Öne Çıkan Yayın

GridView da Seçili Satırı DetailsView da Göstermek

Merhaba arkadaşlar bu makalemizde GridView nesnesi ile birlikte DetailsView nesanesini birlikte kullanacağız. GridView da seçili satırın de...