Ciao.
Potreste spiegarmi perchè questo form non restituisce nulla alla pagina che lo processa?:
page.aspcodice:<html> <head> <script language="javascript"> <!-- function Apri(pagina) { var w = 800; var h = 800; var pw = Math.floor((screen.width - w) / 2); var ph = Math.floor((screen.height - h) / 2); popup = window.open(pagina, "scelte", "scrollbars=yes, toolbar=no, width=" + w + ",height=" + h + ",top=" + ph + ",left=" + pw); } //--> </script> </head> <body> <FORM name="Qform" method="post" onSubmit="Apri('page.asp');return false"> .... <INPUT type="hidden" name="QUEST_ID" value="<%=(rsQuest.Fields.Item("QUEST_ID").Value)%>"> <INPUT type="hidden" name="QUEST_DATED" value="<%=(rsQuest.Fields.Item("QUEST_DATED").Value)%>"> <INPUT name="ANS_ID" type="radio" class="form" value="<%=(rsQuest.Fields.Item("ANS_ID").Value)%>" checked> <INPUT type="submit" class="form" value="Clicca qui"> </FORM> </body> </html>
codice:response.write Request.Form("QUEST_ID") &" "& _ Request.Form("QUEST_DATED") &" "& _ Request.Form("ANS_ID") &" "& _ response.end

Rispondi quotando