sto utilizzando questo script per cancellare un file dal server:
<%
Dim objFSO
Set objFSO = Server.CreateObject("Scripting.FileSystemObject")
objFSO.DeleteFile(Request.QueryString("file"))
'response.Write(Request.QueryString("file"))
%>
il nome del file lo passo tramite url...questo è l'errore che ottengo:
Microsoft VBScript runtime error '800a0035'
File not found
/gestione/deletefile.asp, line 17
provando a stampare il nome del file vedo questo: /gestione/file/nomefile.jpg
come posso risolvere?