Checkbox复选框怎样在ASP中使用 5
要将上述某几个复选框的数据保存到数据库(access)中,应该如何写cs中的代码。我的前台代码如下(节选):<tdalign="center"bgcolor="#f1f5...
要将上述某几个复选框的数据保存到数据库(access)中,应该如何写cs中的代码。
我的前台代码如下(节选):
<td align="center" bgcolor="#f1f5fc" class="auto-style18" colspan="1">
15</td>
<td align="center" bgcolor="#f1f5fc" class="auto-style11" colspan="1">
任教学科★</td>
<td align="left" bgcolor="#ffffff" class="auto-style5">
<asp:CheckBox ID="CheckBox9" runat="server" Text="09思想政治" />
<asp:CheckBox ID="CheckBox7" runat="server" Text="11品德与生活(社会)" />
<asp:CheckBox ID="CheckBox8" runat="server" Text="12思想品德(政治)" />
<asp:CheckBox ID="CheckBox10" runat="server" Text="13语文" />
<asp:CheckBox ID="CheckBox11" runat="server" Text="14数学" />
<br />
<asp:CheckBox ID="CheckBox12" runat="server" Text="15科学" />
</td>
<td bgcolor="#ffffff" style="width: 322px; height: 30px">
</td> 展开
我的前台代码如下(节选):
<td align="center" bgcolor="#f1f5fc" class="auto-style18" colspan="1">
15</td>
<td align="center" bgcolor="#f1f5fc" class="auto-style11" colspan="1">
任教学科★</td>
<td align="left" bgcolor="#ffffff" class="auto-style5">
<asp:CheckBox ID="CheckBox9" runat="server" Text="09思想政治" />
<asp:CheckBox ID="CheckBox7" runat="server" Text="11品德与生活(社会)" />
<asp:CheckBox ID="CheckBox8" runat="server" Text="12思想品德(政治)" />
<asp:CheckBox ID="CheckBox10" runat="server" Text="13语文" />
<asp:CheckBox ID="CheckBox11" runat="server" Text="14数学" />
<br />
<asp:CheckBox ID="CheckBox12" runat="server" Text="15科学" />
</td>
<td bgcolor="#ffffff" style="width: 322px; height: 30px">
</td> 展开
1个回答
展开全部
protected void Page_Load(object sender, EventArgs e)
{
CheckBox chk = new CheckBox();
chk.Text = "testall"; // 这里可以换成数据库的内容
chk.CheckedChanged += new EventHandler(chk_CheckedChanged);
chk.AutoPostBack = true;
Page.Form.Controls.Add(chk);
for (int i = 0; i < 10; i++)
{
CheckBox chk2 = new CheckBox();
chk2.Text = "test" + i.ToString(); // 这里可以换成数据库的内容
chk2.Checked = (i % 3 == 0); // 这里可以换成数据库的内容
Page.Form.Controls.Add(chk2);
}
}
void chk_CheckedChanged(object sender, EventArgs e)
{
CheckBox all = sender as CheckBox;
foreach(Control ctl in Page.Form.Controls)
{
if (ctl is CheckBox)
{
CheckBox chk = ctl as CheckBox;
chk.Checked = all.Checked;
}
}
}
{
CheckBox chk = new CheckBox();
chk.Text = "testall"; // 这里可以换成数据库的内容
chk.CheckedChanged += new EventHandler(chk_CheckedChanged);
chk.AutoPostBack = true;
Page.Form.Controls.Add(chk);
for (int i = 0; i < 10; i++)
{
CheckBox chk2 = new CheckBox();
chk2.Text = "test" + i.ToString(); // 这里可以换成数据库的内容
chk2.Checked = (i % 3 == 0); // 这里可以换成数据库的内容
Page.Form.Controls.Add(chk2);
}
}
void chk_CheckedChanged(object sender, EventArgs e)
{
CheckBox all = sender as CheckBox;
foreach(Control ctl in Page.Form.Controls)
{
if (ctl is CheckBox)
{
CheckBox chk = ctl as CheckBox;
chk.Checked = all.Checked;
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询