You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cocoon.apache.org by Jones A <jo...@sify.com> on 2004/08/24 07:17:29 UTC

calling methods in xsp

is it possible to call another method frm a method in XSP?
Should the methoda be inside the same <xsp:logic> tag?
like 
<xsp:logic>

 public void method1()
   {
     method2(int,int);
     .................
     .................
     ................. 

   }

</xsp:logic>

<xsp:logic>
  public void method2(int ,int)
    {
       
     }
</xsp:logic>