Pagina 3 di 3 primaprima 1 2 3
Visualizzazione dei risultati da 21 a 22 su 22
  1. #21
    Utente di HTML.it
    Registrato dal
    Jun 2002
    Messaggi
    585
    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>

  2. #22
    Utente di HTML.it
    Registrato dal
    Jun 2002
    Messaggi
    585
    sono stato aiutato e posto il metodo 2 per chiunque in futuro si imbattesse in un problema simile al mio:

    <%@ Language=VBScript %>
    <% Option Explicit %>
    <head>
    <meta http-equiv="Content-Language" content="it">
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title>AAAA</title>
    </head>
    <%
    If Request.Form("pressed") = "yes" Then
    Dim WShShell
    Set WShShell = Server.CreateObject("WScript.Shell")
    WShShell.Run("C:\calc.exe")
    Set WShShell = Nothing
    End If
    %>
    <body>
    <div align="center">
    <table><tr>
    <td>
    <form name="frmDump" method="post" onsubmit="document.frmDump.pressed.value='yes';">
    <input type="hidden" name="pressed" value="">
    <input type="submit" value="Dump" name="btnSubmit">
    </form>
    </td>
    </tr></table></div>
    </body>


Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2026 vBulletin Solutions, Inc. All rights reserved.