Nessun risultato. Prova con un altro termine.
Guide
Notizie
Software
Tutorial

Che bottone ha premuto l'utente?

Grazie a questo script è possibile riconosce quale pulsante submit è stato premuto all'interno di un form dove vi sono diverse possibilità di scelta.

<%
dim strPremuto
strPremuto = request.form("bt")
if strPremuto<>"" then
response.write "Hai premuto il pulsante con etichetta: "
response.write "<b>"&strPremuto&"</b>"
else
%>

<html>
<head>
<title>Quale Submit ?</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<form name="form1" method="post" action="script.asp">
<input type="submit" name="bt" value="Label 1">
<input type="submit" name="bt" value="Label 2">
<input type="submit" name="bt" value="Label 3">
</form>
</body>
</html>

<% end if %>

Grazie a questo script è possibile riconosce quale pulsante submit è stato premuto all'interno di un form dove vi sono diverse possibilità di scelta.

<%
dim strPremuto
strPremuto = request.form("bt")
if strPremuto<>"" then
response.write "Hai premuto il pulsante con etichetta: "
response.write "<b>"&strPremuto&"</b>"
else
%>

<html>
<head>
<title>Quale Submit ?</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<form name="form1" method="post" action="script.asp">
<input type="submit" name="bt" value="Label 1">
<input type="submit" name="bt" value="Label 2">
<input type="submit" name="bt" value="Label 3">
</form>
</body>
</html>

<% end if %>

Link copiato negli appunti

Grazie a questo script è possibile riconosce quale pulsante submit è stato premuto all'interno di un form dove vi sono diverse possibilità di scelta.

<%

dim strPremuto

strPremuto = request.form("bt")

if strPremuto<>"" then

response.write "Hai premuto il pulsante con etichetta: "

response.write "<b>"&strPremuto&"</b>"

else

%>

<html>

<head>

<title>Quale Submit ?</title>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

</head>

<body bgcolor="#FFFFFF" text="#000000">

<form name="form1" method="post" action="script.asp">

<input type="submit" name="bt" value="Label 1">

<input type="submit" name="bt" value="Label 2">

<input type="submit" name="bt" value="Label 3">

</form>

</body>

</html>

<% end if %>