Ciao a tutti è posiibile fare con asp questo che normalmente faccio con php

header("Content-Type: application/pdf");
header("Content-Length: ".filesize($file));
// Specifica il tipo di codifica nel trasferimento
header("Content-Transfer-Encoding: binary");
// Invia il file al browser
readfile($file);

per poter passare il nome di un file pdf n qeusto caso ed inviarlo correttamente in output al broswer , in modo che sia interpretato corretamente ??

Grazie.

Hw