<DIV id=RTEContent>Hi,</DIV>  <DIV>&nbsp;</DIV>  <DIV>While displaying data in tabular format&nbsp;Renderx seems to be slow. Iam using the following code for creation of tables. Can you suggest better way to enhance its speed. Dimensions of table&nbsp;is around&nbsp;15 * 200(Rows). There can be multiple tables. &nbsp;</DIV>  <DIV>&nbsp;</DIV>  <DIV>********************************************************************************************</DIV>  <DIV>&lt;xsl:template match="ServiceData"&gt;</DIV>  <DIV>&nbsp;&lt;fo:table space-before.optimum="2pt" space-after.optimum="6pt" padding="4pt" width="100%" keep-together.within-page="always"&gt;<BR>&nbsp;&nbsp;&lt;fo:table-column column-width="10%" number-columns-repeated="1" column-number="1"/&gt;<BR>&nbsp;&nbsp;&lt;fo:table-column column-width="8%" number-columns-repeated="1" column-number="2"/&gt;<BR>&nbsp;&nbsp;&lt;fo:table-column column-width="8%" number-columns-repeated="1" column-number="3"/&gt;<BR>&nbsp;&nbsp;&lt;fo:table-c!
 olumn
 column-width="8%" number-columns-repeated="1" column-number="4"/&gt;<BR>&nbsp;&nbsp;&lt;fo:table-column column-width="8%" number-columns-repeated="1" column-number="5"/&gt;<BR>&nbsp;&nbsp;&lt;fo:table-column column-width="8%" number-columns-repeated="1" column-number="6"/&gt;<BR>&nbsp;&nbsp;&lt;fo:table-column column-width="8%" number-columns-repeated="1" column-number="7"/&gt;<BR>&nbsp;&nbsp;&lt;fo:table-column column-width="8%" number-columns-repeated="1" column-number="8"/&gt;<BR>&nbsp;&nbsp;&lt;fo:table-column column-width="8%" number-columns-repeated="1" column-number="9"/&gt;<BR>&nbsp;&nbsp;&lt;fo:table-column column-width="8%" number-columns-repeated="1" column-number="10"/&gt;<BR>&nbsp;&nbsp;&lt;fo:table-column column-width="8%" number-columns-repeated="1" column-number="11"/&gt;<BR>&nbsp;&nbsp;&lt;fo:table-column column-width="8%" number-columns-repeated="1" column-number="12"/&gt;<BR>&nbsp;&nbsp;&lt;fo:table-column column-width="8%" number-columns-repeated="1"
 column-number="13"/&gt;<BR>&nbsp;&nbsp;&lt;fo:table-column column-width="8%" number-columns-repeated="1" column-number="14"/&gt;<BR>&nbsp;&nbsp;&lt;fo:table-column column-width="8%" number-columns-repeated="1" column-number="15"/&gt;<BR>&nbsp;&nbsp;&lt;fo:table-column column-width="8%" number-columns-repeated="1" column-number="16"/&gt;<BR>&nbsp;<BR>&nbsp;&nbsp;&lt;fo:table-header&gt;<BR>&nbsp;&nbsp;&lt;fo:table-row&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;fo:table-cell border=".5pt solid" number-columns-spanned="16"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&lt;fo:block background-color="purple" color="white" text-align="start" font-family="Times Roman" font-weight="bold" font-size="8pt"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;xsl:value-of select="Service/OpcoCd"/&gt;&lt;xsl:text&gt;(2005 List Rates)&lt;/xsl:text&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&lt;/fo:block&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;/fo:table-cell&gt;<BR>&nbsp;&nbsp;&lt;/fo:table-row&gt;</DIV> 
 <DIV>&nbsp;&nbsp;&lt;fo:table-row&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;fo:table-cell border=".5pt solid" number-columns-spanned="1"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&lt;fo:block text-align="start" font-family="Times Roman"&nbsp; font-size="8pt"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&lt;/fo:block&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;/fo:table-cell&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;fo:table-cell border=".5pt solid" number-columns-spanned="15"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&lt;fo:block text-align="center" font-family="Times Roman"&nbsp; font-weight="bold" font-size="8pt"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;xsl:text&gt;Zones&lt;/xsl:text&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&lt;/fo:block&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;/fo:table-cell&gt;<BR>&nbsp;&nbsp;&lt;/fo:table-row&gt;</DIV>  <DIV>&nbsp;&nbsp;&lt;fo:table-row&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;fo:table-cell border=".5pt solid" number-columns-spanned="1"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&lt;fo:block text-align="start" font-family="Times Roman"&nbsp;
 font-size="8pt"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&lt;/fo:block&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;/fo:table-cell&gt;<BR>&nbsp;&nbsp;&nbsp; &lt;xsl:apply-templates select="./ZoneWeightBreak[position()=1]/Zone" mode="zone"/&gt;<BR>&nbsp;&nbsp;&lt;/fo:table-row&gt;<BR>&nbsp;&nbsp;&lt;/fo:table-header&gt;</DIV>  <DIV>&nbsp;&nbsp;&lt;fo:table-body&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;xsl:apply-templates select="ZoneWeightBreak" /&gt;&nbsp;<BR>&nbsp;&nbsp;&lt;/fo:table-body&gt;<BR>&lt;/fo:table&gt;<BR>&lt;/xsl:template&gt;</DIV>  <DIV><BR>&lt;xsl:template match="Zone" mode="zone"&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;fo:table-cell border=".5pt solid"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&lt;fo:block text-align="center" font-family="Times Roman"&nbsp; font-size="8pt" font-weight="bold"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;xsl:value-of select ="ZoneID"/&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&lt;/fo:block&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;/fo:table-cell&gt;<BR>&lt;/xsl:template&gt;</DIV>  <DIV><BR>&lt;xsl:template
 match="ZoneWeightBreak"&gt;<BR>&nbsp;&lt;fo:table-row&gt;<BR>&nbsp;&nbsp;&lt;fo:table-cell border=".5pt solid"&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;fo:block text-align="center" font-family="Times Roman"&nbsp; font-size="8pt" font-weight="bold"&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&lt;xsl:value-of select="BegRange"/&gt;&lt;xsl:text&gt;-&lt;/xsl:text&gt;&lt;xsl:value-of select="EndRange"/&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;/fo:block&gt;<BR>&nbsp;&nbsp;&lt;/fo:table-cell&gt;<BR>&nbsp;&nbsp;&lt;xsl:apply-templates select="Zone" mode="data"/&gt;&nbsp;<BR>&nbsp;&lt;/fo:table-row&gt;<BR>&lt;/xsl:template&gt;</DIV>  <DIV>&lt;xsl:template match="Zone" mode="data"&gt;<BR>&nbsp;&lt;fo:table-cell border=".5pt solid"&gt;<BR>&nbsp;&nbsp;&lt;fo:block text-align="center" font-family="Times Roman"&nbsp; font-size="8pt"&gt;<BR>&lt;!--&nbsp;&nbsp;&nbsp;&lt;xsl:value-of select ="format-number(Rate,'#,##0.00')"/&gt;--&gt;<BR>&nbsp;&nbsp;&nbsp;&lt;xsl:value-of select
 ="Rate"/&gt;<BR>&nbsp;&nbsp;&lt;/fo:block&gt;<BR>&nbsp;&lt;/fo:table-cell&gt;<BR>&lt;/xsl:template&gt;</DIV>  <DIV>********************************************************************************************</DIV>  <DIV>&nbsp;</DIV>  <DIV>Thanks,</DIV>  <DIV>&nbsp;</DIV><p>
                <hr size=1>Yahoo! Photos – Showcase holiday pictures in hardcover<br> 
<a href="http://us.rd.yahoo.com/mail_us/taglines/photobooks/*http://pa.yahoo.com/*http://us.rd.yahoo.com/mail_us/taglines/photos/evt=38088/*http://pg.photos.yahoo.com/ph//page?.file=photobook_splash.html">Photo Books</a>. You design it and we’ll bind it!