| Posted: 01/06/2005, 7:29 PM |
|
Quote mrachow:
??
<input TYPE="radio" CHECKED>
hi
You must have-stood my meaning.
My meaning is how to make the <!-- BEGIN RadioButton Label1 --><input {Check} type="radio" name="Label1" value="{Value}">{Description}<!-- END RadioButton Label1 --> show in the client page.
I put the <!-- BEGIN RadioButton Label1 --><input {Check} type="radio" name="Label1" value="{Value}">{Description}<!-- END RadioButton Label1 --> in the page.but browser the client page is nothing.
e.g.:
<html>
<head>
<title>NewPage1</title>
</head>
<body>
<!-- BEGIN Record NewRecord1 -->
<form name="{HTMLFormName}" action="{Action}" method="post">
NewRecord1
<table>
<!-- BEGIN Error -->
<tr>
<td colspan="2">{Error}</td>
</tr>
<!-- END Error -->
<tr>
<td>RadioButton1 </td>
<td>
<!-- BEGIN RadioButton RadioButton1 --><input type="radio" value="{Value}" name="{RadioButton1_Name}" {Check}>{Description}<!-- END RadioButton RadioButton1 --> </td>
</tr>
<tr>
<td align="right" colspan="2">
</td>
</tr>
</table>
</form>
<!-- END Record NewRecord1 -->
</body>
</html>
show like this
<html>
<head>
<title>NewPage1</title>
</head>
<body>
<form name="NewRecord1" action="NewPage1.php?ccsForm=NewRecord1" method="post">
NewRecord1
<table>
<tr>
<td>RadioButton1 </td>
<td>
</td>
</tr>
<tr>
<td align="right" colspan="2">
</td>
</tr>
</table>
</form>
<center><font face="Arial"><small>Generated with CodeCharge Studio</small></font></center></body>
</html>
|