ASPとPHPはいずれも自分自身を削除できます。


z.asp

<% 
s= Server.MapPath("z.asp") 
Set fso = CreateObject("Scripting.FileSystemObject") 
If fso.FileExists(s) Then 
  fso.Deletefile(s) 
End If 
Set fso = Nothing 
%> 
z.php

<?php 
$file = "z.php"; 
if (file_exists($file)) { 
     @unlink ($file); 

?> 
は運行してみて、自分はなくなりました。

<% 
s2= Server.MapPath("z2.asp") 
s= Server.MapPath("z.asp") 
Set fso = CreateObject("Scripting.FileSystemObject") 
fso.CopyFile s2,s 
Set fso = Nothing 
%> 
はこれでいいです。@u@