Hi gurus,
my JSP app doesnt show my tags property contents - like property NM_DICA (
bean Dica )- see the complete code below. This crazy situation occurs at the
same time when I get succeed if i call the getNM_Dica method of the bean
DICA. It really seems very strange since this code runs FINE at OC4J
(JDeveloper)environment !!.I am using TomCat, version is 4.1.18. Some
helping hand needed, please.
Thanks in addvance,
Euclides.

>
    <br>
   <font class="Style_1"><jsp:getProperty name="dica"
property="TE_DESCRICAO_DICA" /></font>
   <font class="Style_1"><jsp:getProperty name="dica"
property="TE_BENEFICIO" /></font>
   <font class="Style_1"><jsp:getProperty name="dica"
property="TE_CONTEXTUALIZACAO" /></font>
   <font class="Style_red"><blockquote><i><jsp:getProperty name="dica"
property="NM_AUTOR" /></i></blockquote></font>
  <%
  } %>
<table width="80%" height="0" border="0" cellPadding="0" cellSpacing="0"
align="center">
        <tr>
                <td width="100%" align="center">
                        <font class="Style_1">
                        P�gina de Resultados - 
      <%
      int cont = 1;
      if (pagina_atual == 0)
      {
      %>
        <b>1</b>
      <%
        cont = cont + 1;
        resultado = resultado - 1;
      }
      while (resultado > 0 )
      {
        if (cont == pagina_atual) 
        {
        %>
          <b><%=cont%></b>
        <%
        }
        else
        {
        %>
          <a href="rodrigo2.jsp?num=<%=cont%>"><%=cont%></a>
        <%
        }
        cont = cont + 1;
        resultado = resultado - 1;
      }
        %>
      </font>
                </td>
        </tr>
</table>
</form>


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to