ASP.NET 1.0 and 1.1 BasicsASP.NET discussion for users new to coding in ASP.NET 1.0 or 1.1. NOT for the older "classic" ASP 3 or the newer ASP.NET 2.0.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the ASP.NET 1.0 and 1.1 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
Is it possible to make only half the page scrollable either vertically or horizontally ?
The reason I ask this is that I have a very large Table and it expands beyond the screen limits both ways.
When a user scrolls the screen contents I want the Leftmost Column and the topmost Row to remain in view.
You could put the part you want to scroll inside of a <div> that has explicitly set width and height. In order to get the left column and top row to stay you'd have to create them outside of the div. You would need to remove the row and column from your table and put them each into a separate table that is lined up with the table inside of the div.