Re: Include file in Jsp -recompile issue

2001-02-06 Thread Filip Hanik
Title: Include file in Jsp -recompile issue Isn't the include a statement that gets executed during runtime.so if a sub page is changed, there is no need to recompile the main page. because the include will be dynamically executed. Filip ~Namaste - I bow to the divine in you~Filip

RE: Include file in Jsp -recompile issue

2001-02-06 Thread guyr
7:49 PMTo: [EMAIL PROTECTED]Subject: Re: Include file in Jsp -recompile issue Isn't the include a statement that gets executed during runtime.so if a sub page is changed, there is no need to recompile the main page. because the include will be dynamically executed. Filip

RE: Include file in Jsp -recompile issue

2001-02-06 Thread Srinivas Kurella
. The parser shd be checking for the timestamp on this file. Under the Jrun engine they do get recompiled. Srini -Original Message-From: Filip Hanik [mailto:[EMAIL PROTECTED]]Sent: Tuesday, February 06, 2001 4:49 PMTo: [EMAIL PROTECTED]Subject: Re: Include file in Jsp -recompile issue

Re: Include file in Jsp -recompile issue

2001-02-06 Thread Filip Hanik
] Sent: Tuesday, February 06, 2001 5:06 PM Subject: RE: Include file in Jsp -recompile issue No, the @include file= is done at compile time, and Srini is correct, only the top level jsp pages get time checked, not the included ones. -Original Message-From: Filip Hanik

RE: Include file in Jsp -recompile issue

2001-02-06 Thread Srinivas Kurella
Title: Include file in Jsp -recompile issue Thanks for the info Charles. Will let you know if it doesn't work. Srini -Original Message-From: Charles Lee [mailto:[EMAIL PROTECTED]]Sent: Tuesday, February 06, 2001 5:28 PMTo: [EMAIL PROTECTED]Subject: RE: Include file in Jsp

RE: Include file in Jsp -recompile issue

2001-02-06 Thread Akbar Ahmed
[mailto:[EMAIL PROTECTED]]Sent: Tuesday, February 06, 2001 5:28 PMTo: [EMAIL PROTECTED]Subject: RE: Include file in Jsp -recompile issue Srini, You need to use jsp:include page="you URL" flush="true"/ It will take care of your problem. If you couldn't get i