[求助]关于checkbox的问题
<%Set rs = Server.CreateObject("ADODB.Recordset")
sql="select * from rencai "
rs.open sql,conn,1,3
rs.addnew
...
if tuijian="yes" then
rs("tuijian")=True
else
rs("tuijian")=False
end if
rs.update
rs.close
%>
<tr bgcolor="#ECF5FF">
<td height="25">是否推荐:</td>
<td width="219">
<input name="tuijian" type="checkbox" id="tuijian" value="no" <% if rs("tuijian")=true then response.Write("checked") end if%>>如推荐请选中</td>
</tr>
现在checkbox的默认状态是被选中,怎么让他默认不被选中啊