使页脚模板在按钮单击时可见和不可见

发布于 2024-11-25 08:49:44 字数 370 浏览 0 评论 0原文

我有一个带有页脚模板的网格。它由一个文本框组成,我将在其中添加一些值,单击 btnAdd 后,页脚模板中存在的值将附加到主网格。下面是我的页脚模板。我想让页脚模板仅在单击 btnAdd 时可见。如何使其在单击某些按钮时可见和不可见。 注意:按钮位于网格之外。

<FooterTemplate>
                        <asp:TextBox ID="txtFactor" Style="margin-left: 210px" Visible='<%# IsInEditMode %>' runat="server"  >
                        </asp:TextBox> 

I have a grid with footer template. It consists of a text box in which i will add some value and after clicking btnAdd the value present in the footer template will append to the main grid. Below is my footer template. I want to make the footer template visible only on clicking btnAdd. How to make it visible and invisible on some button click.
Note: button located outside grid.

<FooterTemplate>
                        <asp:TextBox ID="txtFactor" Style="margin-left: 210px" Visible='<%# IsInEditMode %>' runat="server"  >
                        </asp:TextBox> 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

十年不长 2024-12-02 08:49:44

设置 ShowFooter = true 后,您需要重新绑定数据源。

You need to rebind your datasource after setting the ShowFooter = true.

淡淡離愁欲言轉身 2024-12-02 08:49:44

您可以在单击按钮时从代码隐藏设置 GridView.ShowFooter = IsInEditMode 。

http://msdn.microsoft.com /en-us/library/system.web.ui.webcontrols.gridview.showfooter.aspx

You could set GridView.ShowFooter = IsInEditMode from codebehind on button-click.

http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.showfooter.aspx

女皇必胜 2024-12-02 08:49:44

用这个

GridView1.ShowFooter = false; 

use this

GridView1.ShowFooter = false; 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文