Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
Adding that many pages through code shouldn't slow down that much... 4-5 seconds is too long, I think. I'm guessing most of your slow down is coming from the queries that you're running to populate the wizard with the pages. If you run one query that returns "master" 45 records, one for each page, and then you run queries to gather the data for all of the controls on that page, you might be looking at around 100-200 queries to build the list. What you could do is populate the collection on a thread behind the scenes... show something to let the end-user know that it's working while you're populating.
|