I want to put a scrollbar on a gridview....Is it possible in Visual Studio? I have created a master page--in this page I want a windows with static height and width, and inside this window put a gridview....
A:
Why not put that grid in a div and add an overflow to it. So, once the grid is rendered, it will be enclosed in that div with scrollbars.
<div style="overflow: auto; width: 200px; height: 200px">
<asp:GridView ID="GridView1".....
</div>
Bhaskar
2009-12-22 14:09:20