tags:

views:

102

answers:

1

how to make an horizontal scroll for my large GridView ?

...exquestion here : http://stackoverflow.com/questions/2091684/asp-net-fix-gridview-or-detailview

+1  A: 

Try wrapping a <div style="overflow-x:auto;width:800px"> </div> around the GridView.

ddc0660
Awesome ! It works ! Thank you !
nCdy