You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by enrico <en...@weblinea.it> on 2001/07/18 15:31:38 UTC

Custom TAg problem

Hi

I have a problem , hop someone can help me.
I have a Custom Tag class and in my JSP Page i use this sintax to get 
some Custom Tag Properties:

<%@ taglib uri="/tld/diary.tld" prefix="x" %>
<x:calendar id="mon"  >

<jsp:getProperty name="mon" property="maxDay"/>

</x:calendar>


Now i need  to  do something like

<%
String pippo = null;
%>
  
and than assign to pippo the value of  <jsp:getProperty name="mon" 
property="maxDay"/>

but if i try to do something like <% pippo = mon.getMaxDay(); %> it 
dosen't  work