gpt4 book ai didi

c# - 如何从 GridView 中检索 TextBox 值

转载 作者:太空宇宙 更新时间:2023-11-03 13:01:09 29 4
gpt4 key购买 nike

我有一个 gridview 并在 RowDataBound 事件中创建了动态 TextBox

TextBox txtbox = new TextBox();
txtbox.ID = "txt1";
txtControl.Text = "SoomeValue";

当我试图检索按钮点击的值时

    TextBox textboxValue = (TextBox)gv.Rows[rowIndex].Cells[cellIndex].FindControl("txt1");
string value = textboxValue.Text;

它总是返回 null 旁边有 value

最佳答案

答案是否定的。您无法像您尝试的那样从 GridView 中检索动态添加的 TextBox。

如果您使用 GridView,则需要在设计时在模板列中添加文本框。

关于c# - 如何从 GridView 中检索 TextBox 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32255076/

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