.aspx page size

  • Thread starter Thread starter brians
  • Start date Start date
B

brians

I have been batteling my 6 or so second page load time.
I am wondering if I have to many controls on the page for
a data input screen. Can someone tell me what a large
view state would be considered? Also if I have too many
controls:
4 Command Buttons
11 Text boxes
3 combo boxes
DataList
*4 text boxes
*4 labels
*Edit, Update arguments
Datagrid

could all those server controls result in large page
loads.

I have vies state enabled = false on all text and label
controls and I use the Not Is.Page postback.

Any ideas?
 
The More controls the page have, the slower the page to be loaded.
However, It does not look like to be too many controls in your page. It
might be the capacity of your IIS server or the length and logic of the code
behind.
Bin Song, MCP

Yeah but he did mention he was using a datagrid on the page. I'd bet
dollars to donuts his view state is quite large due to that one control
alone. A simple "View Source" would easily confirm such is the case with
the hidden view state field.
 
Back
Top