views:

101

answers:

1

Is there a way to fix a column or row so when the user scrolls down or right, the first is always shown?

I'd need to replicate this excel feature in asp.net and am using a ListView control.

Is it at least doable in html? I'm open to any suggestion to accomplish this

+1  A: 

This article explains how to do it using a Gridview and CSS only, but it does not appear to be compatible with Firefox.

This article explains how to do it with a GridView, a Control Adapter, and CSS.

This article explains how to do it by extending the GridView control. This one, to my eye, seems the best, simplest approach.

Telerik also has a GridView in their control toolkit that is capable of this. They have a demo here.

Robert Harvey