Apart from temp's hint:

- You use CSS, but also use in place options for table cells? Just use a
specific class for the cell:

replace the following:
  <td class="ca" align="right"> with <td class="cr">
  <td class="ca" align="center"> with <td class="cc">
  <td align="right"> with <td class="tt">
  <td align="center"> with <td class="tc">
  <img src=/images/arrow_down.gif> with <img src=/images/ad.gif>
  <img src=/images/arrow_up.gif> with <img src=/images/au.gif>

These replacements take out about 200 kbytes!

- Remove surplus spaces and especially all TAB characters. They do not
have meaning in HTML
- Try to minimize the VIEWSTATE. Is it necessary here?
- The web page is 850+ Kbytes on disk. Is it really necessary to make it
THAT big? Try to minimize the text output as much as possible.

Besides this: Tables can be very slow and are CPU intensive. They need
to be completely loaded before they are displayed.

HTH,

/Rob


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
synalist-public mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/synalist-public

Reply via email to