使用动态数据初始化复选框 


<%
FRONTPAGE_ACCESS = "True"
%>

<form method="POST" action="somepage.asp">
<div align="center"><center><table border="0">
<tr>
<td>FRONTPAGE_ACCESS</td>
<td>
<input type="checkbox" name="FRONTPAGE_ACCESS" value="True"
<% If FRONTPAGE_ACCESS = "True" Then %>
<% Response.Write (" checked")%><% End If %>>
</td>
</tr>
</table>
</center>
</div>
</form>