
glory82, crea una pagina pegale este codigo, y mira su funcionamiento
Código HTML:
<html>
<head>
</head>
<body>
<form method="post" action="">
<%for i=0 to 9%>
<input type="radio" value="<%=i+1%>" name="radio" />
<%next%>
<input type="submit" value="comprobar" />
</form>
<%
if request.ServerVariables("REQUEST_METHOD")="POST" then
for each control in request.form
for indice=1 to request.form(control).count
response.write control & " = " & request.form(control)(indice)&"<br>"
next
next
end if
%></body></html>