Sapreste aiutarmi a trasformare in ASP questo codice PHP:?
codice:
 <?php
 
// Timeout di massimo tempo di esecuzione = 100 minuti
set_time_limit(6000);
 
// Prevenire il 'caching' della risorsa
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
 
if (get_magic_quotes_gpc()) $_GET['file'] = stripslashes($_GET['file']);
 
$file = realpath($_GET['file']);
 
header("Content-Type: application/x-msdownload");
header("Content-Disposition: attachment; filename=" . basename($file));
header("Content-Length: " . filesize($file));
 
readfile($file);
 
exit;
 
?>
Ciao e grazie in anticipo.