ListItem item = this.checkBoxList_File.Items.FindByText("123");
if (item != null)
{
item.Value = nodeInfoItem.Attributes["InfoItemID"].Value;
item.Selected = true;
}然后客户端生成的 
<input id="checkBoxList_File_0" type="checkbox" name="checkBoxList_File:0" checked="checked" /><label for="checkBoxList_File_0">123</label>没有 value 属性呀 呜呜呜
Attribute 说是 ms 的一个 bug 不能对非select起作用,但是value 应该支持了吧