5.2.1 单选题管理
1.启用和作废
数据库中用0,1判断试题使用情况,为1时,可被抽选,抽选之后的题,不能被删除,为0时不能被抽选,为1时,Gridview中的checkbox自动选中,为0的不被选中。实现代码如下:if (i < GridView1.Rows.Count && dr[0].ToString() == "1")
checkbox1 = (CheckBox)GridView1.Rows[i].FindControl("CheckBox1"); checkbox1.Checked = true;
点击启用,其属性“使用”设为“1”,“作废”设为“0”;实现如下 启用: if (mandName == "启用") {
GridViewRow drv =
((GridViewRow)(((LinkButton)(mandSource)).Parent.Parent)); string id =
Convert.ToString(GridView1.DataKeys[drv.RowIndex].Value); SqlConnection Con = new SqlConnection(); Con.Open();
SqlCommand cmd1 = new SqlCommand("update T_SingleChoice set 使用=1 where 题目ID='" + id + "' ", Con); cmd1.ExecuteNonQuery(); Con.Close();
GridView1.DataBind(); shuaxin();