我正在将数据库表中的 id 号列表读取到占位符文本框中,但是;如果我做一个按钮点击数据被删除。 protected void btnSearch_Click(object sender, EventArgs e) { while (myReader.Read()) { TextBox txt = new TextBox(); txt.Text = (string)myReader["idNumber"]; txt.ID = "txt" + i; txt.ReadOnly = true; ContentPlaceHolder1.Controls.Add(txt); ContentPlaceHolder1.Controls.Add(new LiteralControl(" ")); i++; }}
1 回答
- 1 回答
- 0 关注
- 155 浏览
添加回答
举报
0/150
提交
取消