gpt4 book ai didi

c# - ASP.NET 无法更改 Formview 控件的可见性

转载 作者:太空宇宙 更新时间:2023-11-03 11:53:05 25 4
gpt4 key购买 nike

我觉得这很愚蠢,但这到底是什么......

这是处理下拉列表事件的两行方法:

        resolve = (Button)FormView1.FindControl("btn_resolve");
resolve.Visible = true;

它以前和我一起工作过!现在不工作

最佳答案

你需要像使用 formview 数据绑定(bind)事件

 protected void FormView1_DataBound(object sender, EventArgs e)
{
if (FormView1.CurrentMode == FormViewMode.Edit)
{
btn_resolve = (Button)FormView1.FindControl("btn_resolve");
resolve.Visible = true;
}
}

关于c# - ASP.NET 无法更改 Formview 控件的可见性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1539134/

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