string[] selectArray = new string[5]{"2", "4", "9", "12", "17"}
foreach(string tag in selectArray)
{
string cboxID = string.Format("ck{0}", tag);
CheckBox cbox = this.Page.FindControl(cboxID) as CheckBox ;
if(cbox != null)
cbox.Checked = true;
}