becks774
Programmer
- Jun 25, 2007
- 14
Hello,
My app is a list at the top (master), a list on the left (children) and detail controls on the right (detail of child). The user is to pick something from the list at the top (parent) and the children are displayed in the list at the left. When you select a child in the list on the left, it's details are displayed in the controls on the right. Two of the controls on the right are drop down lists that are databound.
The issue is, the first time you click on a child, the page freezes for about 2 minutes and it takes that long to populate the detail controls and for the page to be responsive. After the first child click, clicking on other children reloads the detail controls very quickly. Even if you change parents, switching between the children in very quick as well. It is just getting past the initial 2 minutes that is unacceptable. If I remove the data binding from the 2 drop down controls, the response is always good (but I need them to be lists so I can't just forgo the data binding).
Other info:
I store the data for the 2 bound controls in the cache. I check the cache and if it is null, I fetch from the database.
The list on the left is in 1 update panel triggered by the index change of the parent list.
The detail controls on the right are in an update panel triggered by the index change of the list on the left.
Any help would be greately appreciated. I have searched and searched and cannot locate a post that has helped.
Thank you in advanced.
Becca
My app is a list at the top (master), a list on the left (children) and detail controls on the right (detail of child). The user is to pick something from the list at the top (parent) and the children are displayed in the list at the left. When you select a child in the list on the left, it's details are displayed in the controls on the right. Two of the controls on the right are drop down lists that are databound.
The issue is, the first time you click on a child, the page freezes for about 2 minutes and it takes that long to populate the detail controls and for the page to be responsive. After the first child click, clicking on other children reloads the detail controls very quickly. Even if you change parents, switching between the children in very quick as well. It is just getting past the initial 2 minutes that is unacceptable. If I remove the data binding from the 2 drop down controls, the response is always good (but I need them to be lists so I can't just forgo the data binding).
Other info:
I store the data for the 2 bound controls in the cache. I check the cache and if it is null, I fetch from the database.
The list on the left is in 1 update panel triggered by the index change of the parent list.
The detail controls on the right are in an update panel triggered by the index change of the list on the left.
Any help would be greately appreciated. I have searched and searched and cannot locate a post that has helped.
Thank you in advanced.
Becca