Flash Q!

Out of context: Reply #1

  • Started
  • Last post
  • 3 Responses
  • fugged0

    that's a client side thing, that's for the most part, out of your control.

    but, you can fix that with some server side scripting to set the content type and the header

    in asp you'd do something like:

    Response.ContentType="applicatio...
    Response.AddHeader "Content-Disposition", "attachment; filename=something.pdf"

    and php somethng like:

    header("Content-Type: application/pdf");
    header("Content-Length: " . $length);
    header("Content-Disposition: inline; filename=" . $filename);

View thread