1

我有带有两列标题的gridview,我想让它在每一页上都可见。

标头在以下函数中创建:

Protected Sub grdOriginal_RowCreated(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles grdOriginal.RowCreated

    If e.Row.RowType = DataControlRowType.Header Then

        Dim HeaderRow As GridViewRow = New GridViewRow(0, 0, DataControlRowType.Header, DataControlRowState.Insert)
        Dim Cell_Header As TableCell = New TableCell()
        Cell_Header = New TableCell()
        Cell_Header.Text = "Ознака табле"
        Cell_Header.HorizontalAlign = HorizontalAlign.Center
        Cell_Header.Width = "150"
        Cell_Header.RowSpan = 2
        Cell_Header.Font.Bold = True
        HeaderRow.Cells.Add(Cell_Header)

        Cell_Header = New TableCell()
        Cell_Header.Text = "Површине делова табли по процембеним разредима"
        Cell_Header.HorizontalAlign = HorizontalAlign.Center
        Cell_Header.Width = "370"
        Cell_Header.Font.Bold = True
        Cell_Header.ColumnSpan = 8
        HeaderRow.Cells.Add(Cell_Header)

        Cell_Header = New TableCell()
        Cell_Header.Text = "Укупна површина табле"
        Cell_Header.HorizontalAlign = HorizontalAlign.Center
        Cell_Header.Width = "70"
        Cell_Header.RowSpan = 2
        Cell_Header.Font.Bold = True
        HeaderRow.Cells.Add(Cell_Header)

        Cell_Header = New TableCell()
        Cell_Header.Text = "Укупна вредност табле"
        Cell_Header.HorizontalAlign = HorizontalAlign.Center
        Cell_Header.Width = "70"
        Cell_Header.RowSpan = 2
        Cell_Header.Font.Bold = True
        HeaderRow.Cells.Add(Cell_Header)

        Cell_Header = New TableCell()
        Cell_Header.Text = "Примедба"
        Cell_Header.HorizontalAlign = HorizontalAlign.Center
        Cell_Header.Width = "70"
        Cell_Header.RowSpan = 2
        Cell_Header.Font.Bold = True
        HeaderRow.Cells.Add(Cell_Header)

        e.Row.Cells(0).Visible = False
        e.Row.Cells(9).Visible = False
        e.Row.Cells(10).Visible = False
        e.Row.Cells(11).Visible = False
        'e.Row.Cells(4).Visible = False
        'e.Row.Cells(12).Visible = False
        'e.Row.Cells(13).Visible = False
        'e.Row.Cells(14).Visible = False
        grdOriginal.Controls(0).Controls.AddAt(0, HeaderRow)

    End If
End Sub

我尝试使用:如何在每个打印页面上打印 GridView 的标题,当我有一个标题列但当我尝试制作两列标题时不起作用。

任何机构都知道如何做到这一点?

谢谢我有gridview

4

1 回答 1

1

THEAD是在每个打印页面上保留表格标题的元素。

您需要做的是在网格视图上将其设置为:

GridView1.HeaderRow.TableSection = TableRowSection.TableHeader;

GridView1您的 GridView 的 id在哪里。这尚未在 google chrome 上运行

参考:
让 Google Chrome 在打印页面上
重复表格标题 在打印模式下重复表格标题
如何让 Gridview 呈现 THEAD?

于 2013-02-03T14:24:05.913 回答