Problema risolto:![]()
sono stato aiutato e posto il metodo 1 per chiunque in futuro si imbattesse in un problema simile al mio:
<%@ Language=VBScript %>
<% Option Explicit %>
<%
If Request.QueryString("action")="dump" Then
Dim WShShell
Set WShShell = Server.CreateObject("WScript.Shell")
WShShell.Run("C:\calc.exe")
Set WShShell = Nothing
End If
%>
<html>
<head>
<meta http-equiv="Content-Language" content="it">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>AAAA</title>
</head>
<body>
<div align="center">
<form method="GET">
<input type="hidden" name="action" value="dump" />
<table><tr><td>
<button type="submit">Dump</button>
</td></tr></table>
</form>
</div>
</body>
</html>

Rispondi quotando
