我正在尝试将可滚动的 gridview 制作为gv_RegionMaster
. 我正在动态附加数据库。我也试过用这个CSS。但还没有工作。
我知道这是一个重复的问题,但它不适用于我的代码。请让我知道是否有人可以帮助我。
{
<script type="text/stylesheet">
.header
{
position: relative;
z-index: 10;
overflow:scroll;
max-height:500px;
width:600px
}
</script>
<asp:Button ID="btn_DisplayGrid" runat="server" Text="Click here"/>
<br /><br />
<div id="DivMainContent" visible="false" runat="server" align="center">
<asp:GridView ID="gv_RegionMaster" runat="server" AllowPaging="false" Height="500px" Width="600px" style="overflow:auto">
<HeaderStyle cssClass="header" BackColor="Gray"/>
</asp:GridView>
</div>
}