gpt4 book ai didi

c# - ASP.NET GridView EditTemplate 和查找控件

转载 作者:太空狗 更新时间:2023-10-30 00:28:47 25 4
gpt4 key购买 nike

在 GridView 中,我们使用了一个编辑按钮。单击编辑按钮后,编辑模板中的控件将与更新按钮显示在同一行中。该行有两个下拉列表控件。

流程:

控制:d1 和 d2

d1 正在使用 sqldatasource 进行项目显示:工作正常。

d2 正在使用代码隐藏代码根据 d1 中的选定值加载项目:不工作

如何在编辑模板中找到显示d2项值的控件?

最佳答案

我得到了答案。

protected void GridView1_PreRender(object sender, EventArgs e)
{
if (this.GridView1.EditIndex != -1)
{
Button b = GridView1.Rows[GridView1.EditIndex].FindControl("Button1") as Button;
if (b != null)
{
//do something
}
}
}

关于c# - ASP.NET GridView EditTemplate 和查找控件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2011207/

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