Originariamente inviato da x_raystyle

codice:
	  if rs(23) = true then
	  Response.Write("<input name=""CB1_" & rs(23).Name & """ type=""checkbox"" class=""style3"" id=""chkLettere"" value=""True"" checked />")
	  else
	  Response.Write("<input name=""CB1_" & rs(23).Name & """ type=""checkbox"" class=""style3"" id=""chkLettere"" value=""False"" />")
	  end if
questo sarebbe
codice:
<input name="CB1_"<%=rs(23).Name%> type="checkbox" class="style3" id="CB1_" value="true" <%if rs(23) = true then%>checked<%end if%> />
giusto?