the form i am making contains i think 60 textboxes which are hidden to check if the values being pass is correct. it almost occupy the design page and when i add the listboxes and buttons i can't put it at the lower level. i think the page is already occupied by the textboxes. is there a way i could adjust this one. i don't want to delete the textboxes coz they're important. i have seen web pages which contain so many data and occupy so many spaces. how come, my design space is not that big.
the web form i'm doing has a original form written in vb and asp i think. i want to do this web form in C# and ASP.NET.

form size
Anjan Das
YOu can add a Panel control to the end of your pageand add all the hidden controls inside this panel. This will help you to manage the controls easily as well as it will let you keep moving the panel down if you require more space for other controls.
What I am guessing is that you are using VS.NET 2003 hence the default PageLayout is GridLayout which does absolute positioning. Change this to FlowLayout, so that as you add items to the page they keep flowing down.
You will have to recreate the page with FlowLayout, since the existing controls on your page would already have style attributes set to position them absolutely. YOu can also select the Projects Property and set the PageLayout to Flow Layout for all the pages in your project.
Regards,
Saurabh Nandu
www.MasterCSharp.com
www.AksTech.com
erSudev
Teddy Chen
try to use strings instead of textboxes to store your information.
Sushant Raut
YOu can control the placement of controls through CSS StyleSheets or by using nested tables.
Regards,
Saurabh Nandu
www.MasterCSharp.com
www.AksTech.com
Kamyar Mohajerani
i am having difficulty designing in Flow Layout. I added 3 label control on my page. I can't move the control anywhere or even on the next line of row. have any idea how would i be able to place my controls in specific places. i am also using the webform controls rather than the html form controls. what could you suggest. i am having hard time looking for any articles on how to design using the FlowLayout. maybe you know some articles which i may be able to read.
thanks.
hari.chinnan