gpt4 book ai didi

c# - 表格中的动态复选框不会保留选中的值

转载 作者:行者123 更新时间:2023-11-30 18:03:55 25 4
gpt4 key购买 nike

我正在动态创建一个包含数据和复选框的表,我的问题是当我检查一个特定的复选框是否被选中时,在许多复选框中,它重置为默认状态 false(注意:它不是只有一个它不适用,它适用于非生成的复选框)

在我创建 page_load 函数之前,我创建了复选框,再往下我创建了表格,并用数据填充它,然后我设置了一个函数来检查单击以查看该框是否确实被选中,iv'我尝试了很多次,但没有成功

protected void  table_builder(SqlDataReader readerinfo)
{
//Create a new step for the user
step3label.Text = "3.";
//Table header
TableHeaderRow hr = new TableHeaderRow();
TableHeaderCell hc = new TableHeaderCell();
TableHeaderCell hc2 = new TableHeaderCell();
TableHeaderCell hc3 = new TableHeaderCell();
hr.Cells.Add(hc);
hc.Text = "ID"; //Assign header 1 with a name
hr.Cells.Add(hc2);
hc2.Text = "Name";//Assign header 2 with a name
hr.Cells.Add(hc3);
hc3.Text = "Selection";
Table1.Rows.Add(hr);


//Dynamic Table Generation
int numcells = 3;
int triswitch = 0;//this is use to chose which cell is made, id, name or selection
string checkboxID = null;


while (readerinfo.Read()) //execute the following aslong as there is data to fill the table with
{
for (int j = 0; j < 1; j++)
{
TableRow r = new TableRow();
for (int i = 0; i < numcells; i++)
{
TableCell c = new TableCell();

switch (triswitch)
{
case 0: // this case sets the info for the feild id
c.Text = readerinfo.GetSqlGuid(0).ToString();
checkboxID = readerinfo.GetSqlGuid(0).ToString();
r.Cells.Add(c);
triswitch = 1;
break;

case 1:
c.Text = readerinfo.GetString(1);
r.Cells.Add(c);
triswitch = 2;
break;

case 2:
Checkbox_creator(checkboxID,ref c);
r.Cells.Add(c);
triswitch = 0;
break;

}
}
Table1.Rows.Add(r);
}
}
}

protected void Checkbox_creator(string id,ref TableCell send)
{
//create the checbox
ckbx = new CheckBox();
ckbx.ID = "CBX" + checkboxid.ToString();
checkboxid++;
ckbx.InputAttributes.Add("value", id);
send.Controls.Add(ckbx); //add the chekbox to the cell
checkboxidlist.Add(id);//add the id of the checkbox to the list
}



//
//AFTER DATATABLE IS LOADED
//

public void test()
{
// Find control on page.
CheckBox myControl1 = (CheckBox)Table1.FindControl("CBX0");
if (myControl1 != null)
{
// Get control's parent.
Control myControl2 = myControl1.Parent.Parent.Parent;
Response.Write("Parent of the text box is : " + myControl2.ID);
if (myControl1.Checked == true)
{
Response.Write("check box checked");
}
}
else
{
Response.Write("Control not found");
}
}
//on Submit button click, execute the following function
protected void Submit_Click(object sender, EventArgs e)
{
//Code to be executed
string Userinput; //declare Userinput variable
Userinput = Searchbox.Value; // Set variable to asp controll
Response.Write("<br /> <br />"+ Userinput +" <- user imput works");
ConnectToSql(Userinput);//insert what the user submitted into a query
test();
//
//
//NoTe code validation is needed to prevent injections
//
}

最佳答案

所以基本上这里发生的是每次页面加载时你都将它动态地拖放到页面上。因为您是动态执行此操作,所以触发“已选中”事件或在回发期间被选中的复选框不再存在,因为它不是 View 状态的一部分。 ASP.NET 页面生命周期的工作方式是触发生命周期事件序列,而不管页面是否回发,这意味着新页面是在您触发回发事件并且页面通过preinit, init, preload, load,以及所有那些在它实际命中任何事件处理代码之前的爵士乐。为回发而存在的页面有一组新创建的复选框,这些复选框与前一页上的复选框没有绑定(bind)。

这里有几个选项,这里有两个:

让“checked”事件触发回发,并根据您在服务器上维护的集合检查 Web 控件的唯一 ID。您可以通过转发器或 GridView 将控件拖放到页面上,并挂接到其填充事件中。这样做时,您可以将刚刚添加到字典中的控件的唯一 ID 添加到您存储在 session 中的字典中,该 session 维护您想要的从复选框到数据片段的任何关系。

使用 Javascript 更新始终在页面上并启用 View 状态的隐藏字段。这样做时,您可以获得某种分隔字符串,其中包含您认为与“已选中”复选框相关的信息。每次选中一个复选框时,将其标识信息添加到隐藏输入字段的值中,然后当回发触发时,您应该能够检查该隐藏输入的值并从那里做任何您需要做的事情。

不过,这两种处理方式看起来都非常棘手。如果你详细说明你到底需要什么,那么也许我可以给你一个更好的建议。

关于c# - 表格中的动态复选框不会保留选中的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6699430/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com