gpt4 book ai didi

asp.net - 将 gridview 寻呼机渲染到表格的 tfoot 部分

转载 作者:行者123 更新时间:2023-12-05 04:07:58 24 4
gpt4 key购买 nike

是否可以将 gridview 的 asp.net 寻呼机控件放入 tfoot 部分?

//Render thead tfoot sections
Private Sub Page_PreRenderComplete(sender As Object, e As EventArgs) Handles Me.PreRenderComplete
If gv.Rows.Count > 0 Then
gv.HeaderRow.TableSection = TableRowSection.TableHeader
gv.FooterRow.TableSection = TableRowSection.TableFooter
End If
End Sub

//Initiate pager
Protected Sub gv_PageIndexChanging(sender As Object, e As GridViewPageEventArgs) Handles gv.PageIndexChanging
gv.PageIndex = e.NewPageIndex
Bind_gv()
End Sub

寻呼机在表体中自动生成为 tr,默认情况下位于底部,如果指定则位于顶部。

期望的输出

<table id="gv">
<thead></thead>
<tbody>
//Table data ...
</tbody>
<tfoot>
//Pager here
</tfoot>
</table

最佳答案

是的,你可以做到。您必须添加以下代码:

gv.BottomPagerRow.TableSection = TableRowSection.TableFooter

关于asp.net - 将 gridview 寻呼机渲染到表格的 tfoot 部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48210832/

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