gpt4 book ai didi

c# - 无法从 GridView 中的行/单元格获取值

转载 作者:行者123 更新时间:2023-11-30 20:14:31 24 4
gpt4 key购买 nike

我尝试使用以下代码从 GridView 获取值:

foreach (GridViewRow row in this.dgvEstudios.Rows)
{
var xy = row.Cells[1].Text;
}

.Text返回的值总是一个空字符串(""),为什么会这样?我已将 EnableViewState 设置为 true

最佳答案

如果每个单元格中都有控件,则需要像这样获取值:

Label lblEmailAddress = GridView.Rows[e.CommandArgument].FindControl("lblEmailAddress");
string Email = lblEmailAddress.Text;

在这种情况下,是单元格中的控件具有值而不是单元格本身。

关于c# - 无法从 GridView 中的行/单元格获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/437137/

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