我想在page_load中的每一行的开头添加一些复选框:(我将它们添加到asp:占位符中)
protected void Page_Load(object sender, EventArgs e)
{
Table dtTable = new Table();
TableHeaderRow dtHeaderRow = new TableHeaderRow();
TableHeaderCell dtHeaderCheckbox = new TableHeaderCell();
dtHeaderCheckbox.Controls.Add(dtHeaderCkBox);
dtHeaderRow.Cells.Add(dtHeaderCheckbox);
foreach (DataColumn col in _ds.Tables[0].Columns)
{
TableHeaderCell dtHeaderCell = new TableHeaderCell();
dtHeaderCell.Text += col.ColumnName;
dtHeaderRow.Cells.Add(dtHeaderCell);
}
dtTable.Rows.Add(dtHeaderRow);
TableRow row;
for (int i = 0; i < _ds.Tables[0].Rows.Count; i++)
{
row = new TableRow();
TableCell dtCell = new TableCell();
CheckBox ckBox = new CheckBox();
ckBox.ID = "chkBox_" + _ds.Tables[0].Rows[i]["IDENTIFIER"].ToString();
ckBox.AutoPostBack = false;
ckBox.EnableViewState = false;
dtCell.Controls.Add(ckBox);
row.Cells.Add(dtCell);
for (int j = 0; j < _ds.Tables[0].Columns.Count; j++)
{
TableCell cell = new TableCell();
cell.Text = _ds.Tables[0].Rows[i][j].ToString();
row.Cells.Add(cell);
}
dtTable.Rows.Add(row);
}
phUnconfirmedDiv.Controls.Add(dtTable);
}
问题是,当用户按下提交按钮(和回发)时,我无法访问我的复选框:
protected void btnAccept_OnClick(object sender, EventArgs e)
{
List<CheckBox> chkList = new List<CheckBox>();
foreach (Control ctl in form1.Controls)
{
if (ctl is CheckBox)
{
if (ctl.ID.IndexOf("chkBox_") == 0)
{
chkList.Add((CheckBox)ctl);
}
}
}
ScriptManager.RegisterStartupScript(this, GetType(), "event", "alert('" + chkList.Count + "');", true);
}
答案 0 :(得分:1)
动态生成的控件在视图上呈现后会丢失其状态。对于你来说,在你的代码隐藏中再次访问它们,当你的回发时,你将不得不重新创建它们,之后你就可以操纵它们了。
就获取复选框的选中值而言,您可以尝试这样的方法。这可能不准确,但应该提出一个想法。
这将是您的复选框:
<input type="checkbox" id="yourId" name="selectedIds" value="someValue"/>
在你的代码隐藏中:
value = Request.Form["selectedIds"];
希望这有帮助。
答案 1 :(得分:1)
我现在设法解决了这个问题。谢谢大家的提示!
所有选中的复选框都通过回发发送。因此,“最简单”的方法是搜索所有以回发方式发送的参数,这些参数以“chkBox_”开头,然后将它们保存在列表/数组中。所以我知道应该在我的数据库中更新哪些数据:
protected void btnAccept_OnClick(object sender, EventArgs e)
{
List<String> chkList = new List<String>();
// All checked checkboxes are sent via the postback. Save this parameters in a list:
foreach (string s in Request.Params.Keys)
{
if (s.ToString().IndexOf("chkBox_") == 0)
{
chkList.Add(s.ToString());
}
}
答案 2 :(得分:0)
在按钮的用户界面控件上,autopostback是否设置为true? EI:
<telerik:RadButton runat="server" ID="rBtnRelease" Text="Release" Width="100px" OnClick="rBtnRelease_Click" AutoPostBack="False"/>
当尝试在客户端和服务器端之间来回传输数据时,这通常是常见的错误。