Edd
Posts: 547
|
| Posted: 02/23/2008, 4:54 PM |
|
Andres,
String concatenation (which CCS by default uses) is very slow in ASP.
If you use response.write method is direct writing to the screen (by far the fastest method) but since ccs uses a HTML parsing technique it will never work for CCS.
Try the result from PeterR's last post on this subject
ASP is very slow with assembling large strings required to build a listbox, but for larger amount of data
you can speed up the listbox by placing such code the in "Before Show" event of the ListBox:
Formname.Listboxname.PopulatingType = ccsJoins
(Formname and Listboxname need to be replaced with your own values)
This method is little slower with lesser number of values, but should work in your case,
if you still want your users to select from such a large number of values.
Please post your speed results as I am curious to know the timimgs.
Good luck
Edd
_________________
Accepting and instigating change are life's challenges.
http://www.syntech.com.au |