codice:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Documento senza titolo</title>
<meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type" />
</head>
<body>
<div id="contenitore">
<form action="" method="post" name="f1">
<table width="559" border="0">
<tr>
<td width="118">Si</td>
<td width="118"><input type="radio" name="page" id="si" value="informativa_privacy.asp" onclick="document.f1.action=this.value" /></td>
<td width="154">No</td>
<td width="155"><input type="radio" name="page" id="no" value="grazie.asp" onclick="document.f1.action=this.value" /></td>
</tr>
<tr>
<td colspan="4"><input type="submit" name="invio" id="invio" value="Invia" /></td>
</tr>
</table>
</form>
</div>
</body>
</html>
se invece lo devi gestire lato server potresti fare cosi action="azione.asp", nella pagina azione.asp:
codice:
<%
dim page
page = Request("page")
Response.redirect(page)
%>