1. 把 DataGrig 包在 Div 裡面
<DIV style="OVERFLOW: auto; HEIGHT: 120px">
<asp:DataGrid ...
</DIV>
2. 設定固定 header 的 style
<style type="text/css">
<!--
.DataGridFixedHeader {background-color: white; position:relative; top:expression(this.offsetParent.scrollTop);}
-->
</style>
3. 把這個 style 設給 HeaderStyle 的 CssStyle
<asp:DataGrid id="dgContacts" runat="server" ... >
...
<HeaderStyle CssClass="ms-formlabel DataGridFixedHeader"></HeaderStyle>
...