Bonjour,
je souhaite savoir s'il existe un équivalent de la fonction header de PHP en asp ;
En effet je voudrais la chose suivante:
<?php header ("Content-type: image/png");
//UPDATE
$id = $_GET['id'];
mysql_query("UPDATE SQL");
//CREATION IMAGE
$im = imagecreate (1, 1);
$couleur_fond = ImageColorAllocate ($im, 255, 255, 255);
imagejpeg($im);
?>