我有带有两列标题的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