日期:2014-05-17 浏览次数:20553 次
public void GetPanelControl()
{
DataTable dt = DataLayer.GetAllPEQUIPSource();
for (int i = 0; i < dt.Rows.Count; i++)
{
CheckBox ckbox = new CheckBox();
ckbox.AutoPostBack = false;
string str= dt.Rows[i]["PIP"].ToString();
int count = str.Length;
ckbox.Text = str.Substring(str.LastIndexOf('.')+1,2);
ckbox.ID = "ckbox" + i;
this.panList.Controls.Add(ckbox);
}
}