动态创建checkbox的问题?????????
我有一串0,1字符,标定某些多选框是否被选中,当我改变dropdownlist的值后就根据其值动态绑定一组多项框,并根据前面的0,1串确定是否被选中,我的代码如下:pro...
我有一串0,1字符,标定某些多选框是否被选中,当我改变dropdownlist的值后就根据其值动态绑定一组多项框,并根据前面的0,1串确定是否被选中,我的代码如下:
protected void ddlModule_SelectedIndexChanged(object sender, EventArgs e)
{
//this.pHolderFunc.Visible = true;
int ID = Convert.ToInt32((sender as DropDownList).SelectedValue);
string sql = "select * from [AllFunc] where ModuleNum='" + ID + "'";
SqlDataReader sdr = Operate.sdr(sql);
while (sdr.Read())
{
count++;
this.pHolderFunc.Controls.Add(new LiteralControl(" "));
CheckBox cb = new CheckBox(); //动态生成checkbox
cb.ID = "cb"+count.ToString(); //本来想根据这个ID找的
cb.Text = sdr["FuncName"].ToString();
int FuncID = Convert.ToInt32(sdr["FuncNum"]);
cb.TabIndex = (short)FuncID;
if (userDate.Authority[FuncID] == "1")//userDate是自定义的一个类
cb.Checked = true;
this.pHolderFunc.Controls.Add(cb);
if (count%5==0)
{
this.pHolderFunc.Controls.Add(new LiteralControl(" <br>"));
}
}
if (Conn.State == ConnectionState.Open)
Conn.Close();
sdr.Close();
ViewState["cbNum"] = count;
//Response.Write(ID);
}
我btn_click的代码:
protected void btnSave_Click(object sender, EventArgs e)
{
int FuncID = 0;
count =(int) ViewState["cbNum"];
for (int i = 1; i < count; i++)
{
CheckBox cb = (CheckBox)this.pHolderFunc.FindControl("cb" + i.ToString());
FuncID = Convert.ToInt32(cb.TabIndex);
if (cb.Checked)
{
userDate.Authority[FuncID] = "1";
}
}
}当执行时会报错说:未初始化该控件,然后经过调试发现,每当click时又从page_load然后在去btn_click事件,所以此时固然找不到由于selectindexchanged事件触发而动态形成的单选控件,所以请大家帮忙想想办法我如何解决这个问题?我想实现的功能再说明一下:想通过根据droplist值的不同从数据库检索相应选项,并初始化其值,包括是否选中,然后再单击确定将多选框的值保存进数据库,如果有其他方法,请各位赐教,万分感激,谢谢! 展开
protected void ddlModule_SelectedIndexChanged(object sender, EventArgs e)
{
//this.pHolderFunc.Visible = true;
int ID = Convert.ToInt32((sender as DropDownList).SelectedValue);
string sql = "select * from [AllFunc] where ModuleNum='" + ID + "'";
SqlDataReader sdr = Operate.sdr(sql);
while (sdr.Read())
{
count++;
this.pHolderFunc.Controls.Add(new LiteralControl(" "));
CheckBox cb = new CheckBox(); //动态生成checkbox
cb.ID = "cb"+count.ToString(); //本来想根据这个ID找的
cb.Text = sdr["FuncName"].ToString();
int FuncID = Convert.ToInt32(sdr["FuncNum"]);
cb.TabIndex = (short)FuncID;
if (userDate.Authority[FuncID] == "1")//userDate是自定义的一个类
cb.Checked = true;
this.pHolderFunc.Controls.Add(cb);
if (count%5==0)
{
this.pHolderFunc.Controls.Add(new LiteralControl(" <br>"));
}
}
if (Conn.State == ConnectionState.Open)
Conn.Close();
sdr.Close();
ViewState["cbNum"] = count;
//Response.Write(ID);
}
我btn_click的代码:
protected void btnSave_Click(object sender, EventArgs e)
{
int FuncID = 0;
count =(int) ViewState["cbNum"];
for (int i = 1; i < count; i++)
{
CheckBox cb = (CheckBox)this.pHolderFunc.FindControl("cb" + i.ToString());
FuncID = Convert.ToInt32(cb.TabIndex);
if (cb.Checked)
{
userDate.Authority[FuncID] = "1";
}
}
}当执行时会报错说:未初始化该控件,然后经过调试发现,每当click时又从page_load然后在去btn_click事件,所以此时固然找不到由于selectindexchanged事件触发而动态形成的单选控件,所以请大家帮忙想想办法我如何解决这个问题?我想实现的功能再说明一下:想通过根据droplist值的不同从数据库检索相应选项,并初始化其值,包括是否选中,然后再单击确定将多选框的值保存进数据库,如果有其他方法,请各位赐教,万分感激,谢谢! 展开
展开全部
你创建是没错,问题是你保存时去遍例Checkbox的时候错了
用Foreach遍例
例
foreach (System.Windows.Forms.Control control in this.Controls)//遍历Form上的所有控件
{
if (control is System.Windows.Forms.CheckBox)
{
System.Windows.Forms.CheckBox cb= (System.Windows.Forms.CheckBox)control;
cb.test = "111111";
}
}
只是给点提示。。。具体的希望你自己想
用Foreach遍例
例
foreach (System.Windows.Forms.Control control in this.Controls)//遍历Form上的所有控件
{
if (control is System.Windows.Forms.CheckBox)
{
System.Windows.Forms.CheckBox cb= (System.Windows.Forms.CheckBox)control;
cb.test = "111111";
}
}
只是给点提示。。。具体的希望你自己想
网易云信
2023-12-06 广告
2023-12-06 广告
网易云信提供一站式的 1 对 1 UIKit 组件库,可以更快地搭建 1 对 1 社交平台,能够快速实现音视频呼叫、音视频通话、1对1消息发送、美颜和礼物功能,直接可以复用我们的组件源码就可以了。优势:1、全套1对1 UI组件,接入更快;2...
点击进入详情页
本回答由网易云信提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询