I have this weird problem where a radio button with the 'checked' attribute does not show the button checked. Here's the code:
<td><input name=x type=radio value=0 checked>N
<input name=x type=radio value=1 >C
</td>
The output is:
( )N ( )C
when it should be:
(@)N ( )C
(loosely rendered![Smile :) :)](data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)
I included the <td> tags in case embedding the use of a table sheds some light. Also, the document is being processed by an ASP clone, called CSP, from Crystal Decisions.
Any ideas would be appreciated.
<td><input name=x type=radio value=0 checked>N
<input name=x type=radio value=1 >C
</td>
The output is:
( )N ( )C
when it should be:
(@)N ( )C
(loosely rendered
I included the <td> tags in case embedding the use of a table sheds some light. Also, the document is being processed by an ASP clone, called CSP, from Crystal Decisions.
Any ideas would be appreciated.