Using Scrollbars With GridView
Que:
How to display a gridview using scrollbars and without using pagination of the gridview?
Ans 1:
<div style=”width: 725px; height: 150px; overflow: auto”>
<Your grid view here>
</div>
Ans 2:
Another way is to add the gridview to an asp:Panel control, and set the desired Width and Height for the Panel with ScrollBars property set to Vertical.
