Here's a code snippet. . .
<form name="FinalAccept" method="get"><br>
<input type="radio" name="YesNo" value="Yes" onclick="/accept"> Yes<br>
<input type="radio" name="YesNo" value="No" onclick="/accept"> No<br>
Clearly, what I'm trying to do is call the routine linked to /accept when the user clicks on the radio button.
I know the routine is working because I call the same routine from another place in the program.
I'm trying to run it locally using google appserver. Is there something I'm missing?
Thanks