Código ASP:
Ver original<%@LANGUAGE="VBSCRIPT"%>
<%
Go = int(Request.Form("Go"))
If Go = 1 Then
eleccion = int(Request.Form("eleccion"))
If eleccion = 1 Then
Response.redirect("paginasi.asp")
ElseIf eleccion = 2 Then
Response.redirect("paginano.asp")
End IF
End IF
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
</head>
<body>
<form id="form" name="form" method="post" action="#">
<strong>Quedo satisfecto con su coche</strong><<br />
<input type="radio" name="eleccion" value="1" />Si<br />
<input type="radio" name="eleccion" value="2" />No
<br />
<input type="submit" name="Submit" value="Enviar" />
<input name="Go" type="hidden" value="1" />
</form>
</body>
</html>