请教一泛型问题
public static void BindControlWithSql(DropDownList control,string strSql){
DataTable dt = DbHelperSQL.Query(strSql).Tables[0];
if (dt.Rows.Count > 0)
{
for (int i = 0; i < dt.Rows.Count; i++)
{
control.Items.Add(new ListItem(dt.Rows[i][1].ToString(), dt.Rows[i][0].ToString()));
}
}
}
上面是给下拉列表赋值的方法,我想同样用这段代码实现给CheckBoxList赋值(不要重载的,要用泛型的方法实现),但不知怎么写,有人知道吗?