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

Invio form e Metodo Get

Grazie al seguente script è possibile osservare come si prelevano i dati emessi da un modulo avente get come action.

<%
if request.QueryString("nome")<>"" then
response.write "Ciao " & request.QueryString("nome")
else
%>
<FORM METHOD="get" action="script.asp">
<INPUT TYPE="text" NAME="nome">
<br>
<INPUT TYPE="submit" value="Click">
</FORM>
<%
end if
%>

Grazie al seguente script è possibile osservare come si prelevano i dati emessi da un modulo avente get come action.

<%
if request.QueryString("nome")<>"" then
response.write "Ciao " & request.QueryString("nome")
else
%>
<FORM METHOD="get" action="script.asp">
<INPUT TYPE="text" NAME="nome">
<br>
<INPUT TYPE="submit" value="Click">
</FORM>
<%
end if
%>

Link copiato negli appunti

Grazie al seguente script è possibile osservare come si prelevano i dati emessi da un modulo avente get come action.