Ho provato a mettere il seguente codice:

<script Language = "vbscript" runat="server">
.....
Sub act()
Set Executor = Server.CreateObject("ASPExec.Execute")
Executor.Application = "c:\calc.exe"
Executor.Parameters = "c:\windows\system32\autoexec.nt"
Executor.ShowWindow = True
strResult = Executor.ExecuteWinApp
End Sub
</script>

all' interno del file global.asa

in modo che nella pagina prova.asp ci sia solo il seguente codice , ma ho errore ...
Ho provato ad accogliere il suggerimento di creare un ASP Application Object,
ma non riesco ad uscirne fuori ...

<head>
<meta http-equiv="Content-Language" content="it">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>SEGY Check</title>
</head>
<body><div align="center">
<table>
<tr><td>

<input type="file" name="file" size=14>


<input type="button" value="Dump" language="VBScript" onClick="act"> </td></tr>
</table></div></body>