Resolved Panel with 2 vertical scroll bars?

JuggaloBrotha

VB.NET Forum Moderator
Staff member
Joined
Jun 3, 2004
Messages
4,530
Location
Lansing, MI; USA
Programming Experience
10+
I don't think this is possible at all, but does anyone know a way to get 2 vertical scroll bars on a panel? Right now here's the code:
VB.NET:
<asp:Panel ID="panScroll" runat="server" ScrollBars="Both" Height="400">
  <div>
    Content...
  </div>
</asp:Panel>
There's a GridView inside the panel and it's so wide that scrolling all the way over to the right to scroll down causes the client to lose their position on the page and would like a scrollbar provided on the left (keeping the one on the right) if it's possible, anyone know of a way to do that?

They'd like a horizontal scrollbar on the top as well as the bottom too if possible.
 
Back
Top