Re: How can I use a java variable that was defined in the enclosing template tag?

2000-12-21 Thread Hay Tran
your help. -Hay - Original Message - From: "Cedric Dumoulin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, December 21, 2000 6:13 AM Subject: Re: How can I use a java variable that was defined in the enclosing template tag? > > I have misspell t

Re: How can I use a java variable that was defined in the enclosing template tag?

2000-12-21 Thread Cedric Dumoulin
I have misspell the Components Proposal URL ! try : http://gauss.ficsgrp.com/cdm/ Cedric Cedric Dumoulin wrote: > Hay, > > You can't use a java variable defined in a page inside included page. > You need to define your variable in a scope (here request, but can > also be sessio

Re: How can I use a java variable that was defined in the enclosing template tag?

2000-12-21 Thread Cedric Dumoulin
Hay, You can't use a java variable defined in a page inside included page. You need to define your variable in a scope (here request, but can also be session or application). An alternative to your problem could also be : <%String strToBeUsedByPageA = "Hello";%> and use

How can I use a java variable that was defined in the enclosing template tag?

2000-12-20 Thread Hay Tran
Here is an example: // Here is the code segment for the enclosing tag, the template:insert ... . <%     String strToBeUsedByPageA = "Hello"; %>           // Here is the code segment for the enclosed file, PageA The enclosing tag defined the strToBeUsedByPageA variable that is bei