I've successfully bound data to a grid view in my ASP.NET application. I've implemented pagination, but instead of that, I'd like to incorporate a scroll bar to prevent lengthy paging.
Below is the code for my grid view:
<div class="box-content" style="min-height: 170px">
<asp:GridView ID="gvVenFileQA" runat="server" AutoGenerateColumns="False"
EnableModelValidation="True"
ShowHeader="true" Width="100%" CssClass="altrowstable" AllowPaging="true"
EmptyDataText="No Data Available !"
PageSize="5" OnPageIndexChanging="gvVenFileQA_PageIndexChanging"
OnRowDataBound="gvVenFileQA_RowDataBound"
OnSelectedIndexChanged="gvVenFileQA_SelectedIndexChanged"
DataKeyNames="ID,RUN_ID">
<Columns>
I'm looking to implement scrolling within the bound data section, not on the outer <div> tag. Any suggestions would be appreciated.