如何在C#中点击按钮后隐藏数据
在上面的Gridview中有两个按钮1.显示数据2.隐藏数据。如果我们点击显示数据按钮意味着它已经在gridview中显示数据。如果我们单击隐藏数据,它应该隐藏 gridview 中的所有记录。请任何人告诉我如何用 c# 做
In the Above Gridview there Are two Buttons 1.Show Data 2.Hide Data. if we click on show data button means it has display data in gridview. if we clicked on hide data it should hide all records in gridview. please anyone tell me how to do with c#
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,作为一般规则,您想发布您的标记的“一些”,甚至是您拥有的一些代码 - 这可以帮助这里的每个人都试图帮助您。
由于您是新手,我会在这里给您一些休息。
好的,所以假设我们在页面上有一个网格。
我们还假设页面上的两个按钮。一个显示网格,另一个用于隐藏网格。
因此,假设我们的GridView看起来像这样 - 标记(和两个按钮)。
加载网格的代码是这样:
现在我们有了:
现在,我们有两个按钮。一个显示网格,另一个要隐藏。
这两个按钮代码是这样:
Ok, as a general rule, you want to post "some" of your markup, and even some code you have - this helps everyone here try to help you.
Since you are new, I'll give you a bit of a break here.
Ok, so assume we have a grid on a page.
And we assume ALSO two buttons on the page. One to show the grid, the other to hide the grid.
So, say our GridView looks like this - the markup (and two buttons).
The code to load the grid is this:
And now we have this:
Now, we have the two buttons. One to show the grid, and the other to hide.
Those two buttons code are this: