I am having a hard time clearing a Radio button once a user hits the submit button. On the result page the user hits the back button on the browser and the previously selected radio button is still checked. I don't want this radio button to be checked. Here is a quick sample of a similar logic creating the problem.
HTML page 1 (1st Page):
=======================
<HTML>
<HEAD>
<TITLE> Choose Report Name </title>
</head>
<BODY>
<form name="cool" method="post" action="test2.html">
<input type='radio' name='report' value='1' selected>Report 1<br><br>
<input type='radio' name='report' value='2' >Report 2<br><br>
<input type='radio' name='report' value='3' >Report 3</td><BR><BR>
<INPUT type="submit">
</form>
</body>
</html>
HTML page 2 (Result Page):
==========================
<HTML>
<HEAD>
<TITLE> RECEIVE OK</title>
</head>
<BODY>
This is the result page.
</body>
</html>
Try hitting the back button on your browser on the result page. As you can see the radio button is still check. (using Internet Explorer 6. I hope that there is someone out there that can help me clear this problem.
Any help would be mostly appreciated.
Sincerely;
Carlo
HTML page 1 (1st Page):
=======================
<HTML>
<HEAD>
<TITLE> Choose Report Name </title>
</head>
<BODY>
<form name="cool" method="post" action="test2.html">
<input type='radio' name='report' value='1' selected>Report 1<br><br>
<input type='radio' name='report' value='2' >Report 2<br><br>
<input type='radio' name='report' value='3' >Report 3</td><BR><BR>
<INPUT type="submit">
</form>
</body>
</html>
HTML page 2 (Result Page):
==========================
<HTML>
<HEAD>
<TITLE> RECEIVE OK</title>
</head>
<BODY>
This is the result page.
</body>
</html>
Try hitting the back button on your browser on the result page. As you can see the radio button is still check. (using Internet Explorer 6. I hope that there is someone out there that can help me clear this problem.
Any help would be mostly appreciated.
Sincerely;
Carlo