标签: c# asp.net
是Asp.net的新手。我们创建了一个网格视图来显示网页中的数据。最初需要隐藏网格视图数据。点击搜索按钮后,应根据搜索条件显示。
答案 0 :(得分:0)
yourGridView.Visible = False;
然后在您的按钮Click事件中:
if(it_should_show) //depending on your search criteria { yourGridView.Visible = True; }