19 Ekim 2016 Çarşamba

Asp Webform'da dosyayı sayfaya basmak

              string filePath ="c:\\falan\\filan.jpg"

                byte[] buffer = File.ReadAllBytes(filePath);

                Response.ContentType = "image/jpeg";
                Response.OutputStream.Write(buffer, 0, buffer.Length);
                Response.AddHeader("Content-Disposition", "filename=filan.jpg");

filename yanına ";attachment" eklersek sayfa açılırken dosyayı indirmeye başlayacaktır

ContentType : application/pdf, image/jpeg , image/png, image/bmp
gibi

Hiç yorum yok:

Yorum Gönder

.net 6 mapget kullanımı

 app.UseEndpoints(endpoints => {     endpoints.MapGet("/", async context =>     {         var response = JsonConvert.Seriali...