you could use a panel control for the scrollbar:
<asp:Panel ID="Panel1" runat="server" Height="400px" Width="200px" ScrollBars="Vertical">
<asp:GridView ....>
</asp:GridView>
</asp:Panel>
for the fixed heading I only have this ugly solution:
<style type="text/css">
<!--
table th
{
position: relative;
top: expression(this.parentNode.parentNode.
parentNode.scrollTop-1);
}
-->
</style>
cheers, marco
|