Hallo Zusammen!
Ich möchte mit einer ASP.NET /
ISAPI.DLL eine Grafik an den Webbesucher senden!
Und zwar nicht das diese im Browser angezeigt wird, sondern das Sie per Dateinamenabfrage gespeichert wird. (Download)!
Versicht habe ich:
Delphi-Quellcode:
Context.Response.ContentType := 'application/x-zip-compressed';
Context.Response.AppendHeader('Content-Disposition','filename='+Bild);
Context.Response.WriteFile(Bild);
und
Delphi-Quellcode:
Context.Response.ContentType := 'application/x-zip-compressed';
Context.Response.AppendHeader('Content-Disposition','filename='+Bild);
Context.Response.TransmitFile(Bild);
Leider wird das Bild immer im Browser angezeigt!
Jemand ne Idee?
Grüsse Mavarik