Also 2. Versuch ... Das Forum hat irgendwie einen Fehler ... ?
Moin Ina !
Also ich würde das Problem so lösen (ohne Javascript) :
seite.htm:
***********
<html>
<form action="weiter.asp" method="post">
<input type="radio" name="auswahl" value="1">
<input type="radio" name="auswahl" value="2">
<input type="radio" name="auswahl" value="3">
<input type="submit" value="...weiter">
</form>
weiter.asp:
************
<%
auswahl=REQUEST.FORM("auswahl")
SELECT CASE auswahl
CASE "1"
dahingehts="seite1.htm"
CASE "2"
dahingehts="seite1.htm"
CASE "3"
dahingehts="seite1.htm"
END SELECT
%>
<html>
<meta http-equiv="refresh" content="0; URL=<%=dahingehts%>">
</html>
So, das wäre ein Lösungsansatz. Ich hoffe das hilft dir weiter ;-)
Gruß
Holger