Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在表单视图中有一个按钮,如果条件为假,我想让按钮不可见。对于第一条记录,以下代码可以正常工作。
FormView1.FindControl("btnnext").Visible = false;
但在第二条记录中,按钮保持可见。我已将相同的代码放入回发代码中。
请问我怎样才能让它不可见?