Form.asp:
codice:
<%
Select Case intCode
Case 1
blnDelete = FALSE
Case 2
strButton = "Delete"
blnDelete = TRUE
End Select
%>
<form name="Qform" method="POST" action="pr_messages.asp" onsubmit="return(convalidaForm(this));">
<input name="EMAIL" value="<%=email%>" size="35" readonly="">
<input type="image"src="img/invia_button.gif" border="0" align="middle" VALUE="<%=strButton%>" name="ACTION">
</form>
ProcessaForm.asp:
codice:
If Request.Form("ACTION") = "Save" then
strACTION = Request.Form("ACTION")
response.write strACTION &"
"
end if