In ASP.NET, is there any databound control (GridView, DataList, Repeater, ListView etc.) which has fixed header feature?
I search on net but find complex solutions for this simple requirement. I am wonder How Microsoft forget to give this simple and required feature?
Any way I am working on ASP.NET Framework 3.5. Has somebody find simple solution to this problem yet?
Has ASP.NET any databound control which has fixed header feature?
1.2k Views Asked by Amit At
2
There are 2 best solutions below
2

There are some tricks with css that you can do and make the header remain visible, and the data scroll.
So here are some links that do that:
http://datawebcontrols.com/demos/ScrollableDataGridFixedHeader.aspx
No "native" ASP.NET control, but you could use Ideasparks CoolGridView. It works fine for me and is free.
Note that ASP.NET is a serverside technology and what you're asking is clientside functionality.