ここで何が起こったのかわかりませんが、3 つのパネルがあり、これらの 3 つのパネルは 1 つの大きなパネル内にネストされているため、次のようになります。
<asp:panel id="pnlMain" runat="server" Height="60%" Width="100%">
<div id="div1">
<asp:panel id="panel1" runat="server" Height="100%" width="100"
scrollbars="vertical"/>
</div>
<div id="div2">
<asp:panel id="panel2" runat="server" Height="100%" width="100"
scrollbars="vertical"/>
</div>
<div id="div3">
<asp:panel id="panel3" runat="server" Height="100%" width="100"
scrollbars="vertical"/>
</div>
</asp:panel>
これらのネストされたパネルにグリッドビューを追加すると、パネルが大きくなり、スクロールバーがスクロールしなくなります。つまり、パネルの高さが固定されずに伸びます。
これを修正するにはどうすればよいですか?
ありがとう