fixe gridview header

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • simonakiki
    New Member
    • Sep 2007
    • 23

    fixe gridview header

    i have a griview that contain > 200 rows
    so i need to fixe the header

    this is the code to create my gridview


    </table>
    <table>
    <tr>
    <td style="height: 261px">
    <div style="overflow : auto; height: 350px; width: 700px">
    <asp:GridView ID="GridView1" AllowSorting="t rue" runat="server" Font-Size="Small"
    AlternatingRowS tyle-BackColor="Aqua " PageSize="8" OnSorting="Grid View1_Sorting"
    AutoGenerateSel ectButton="true " OnSelectedIndex Changing="GridV iew1_SelectedIn dexChanging">
    </asp:GridView>
    </div>
    </td>
    </tr>
    </table>


    10x for helping me
  • Plater
    Recognized Expert Expert
    • Apr 2007
    • 7872

    #2
    Could just use Paging? only show X number of entries per "page", gridviews have really simple control for it.

    Comment

    Working...