parser

Написать ответ на текущее сообщение

 

 
   команды управления поиском

Опять эта мулька: exception in request exception handler

Peranth 29.07.2004 12:48

Парсер выдает: exception in request exception handler: Exception 0xC00000FD at 0x100072DD

Код такой:

<xsl:template match="Main/Article">
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="paragraphs">
<tr>
<td width="60" height="25" bgcolor="#000000"></td>
<td height="25">
<xsl:choose>
<xsl:when test="Title"><h1><xsl:value-of select="Title"/></h1></xsl:when>
<xsl:otherwise><h1><xsl:value-of select="/Page/Title"/></h1></xsl:otherwise>
</xsl:choose>
</td>
</tr>
<tr>
<td width="60" valign="top"></td>
<td valign="top"><xsl:apply-templates select="."/></td>
</tr>
</table>
</xsl:template>

Он нормально работает, если последний вызов шаблона <xsl:apply-templates select="."/> заменить на <xsl:apply-templates/>

В чем моя ошибка?