jsp : include problem

2002-11-06 Thread Kesavanarayanan, Ramesh (Cognizant)
Hi all, when i include a page in my jsp jsp:include page=../common/searchPage.jsp flush=true jsp:param name=search value=searchV / /jsp:include i am getting unterminated jsp:include tag error. i am using VAJ4.0 with jsp1.0 compiler. any idea why htis happens??? Regards Ramesh

Re: jsp : include problem

2002-11-06 Thread Steven A. Martin
JSP 1.0 does not support this, only JSP 1.1. - Original Message - From: Kesavanarayanan, Ramesh (Cognizant) [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, November 06, 2002 4:42 AM Subject: jsp : include problem Hi all, when i include a page in my jsp jsp:include page

Re: JSP include problem

2000-12-08 Thread coolfire
Jsp Code Faster is good tools ,u can goto http://jspcode.yeah.net to download it Arun Prakash wrote: Hi All, Again a problem with JSP include. Now when i include a html page using the jsp:include it works fine, but when i change the contents of the html page it keeps displaying the

JSP include problem

2000-12-07 Thread Arun Prakash
Hi All, Again a problem with JSP include. Now when i include a html page using the jsp:include it works fine, but when i change the contents of the html page it keeps displaying the same old contents...how do i get rid of this ?? regards G. Arun Prakash Senior Software Engineer

Re: JSP include problem

2000-12-07 Thread Hans Bergsten
Arun Prakash wrote: Hi All, Again a problem with JSP include. Now when i include a html page using the jsp:include it works fine, but when i change the contents of the html page it keeps displaying the same old contents...how do i get rid of this ?? Most likely it's because you use

jsp include problem

2000-12-05 Thread arun prakash
Hi All., I'm dynamically including a jsp file as shown in the following code : % out.println("Hello there "); String f = "freeword1"; String str = "/tmp/" + f + ".html"; try { % jsp:include page = "%=str%" flush = "true"/ % } catch(Exception e) { % %=f% % } out.println("This is

Re: jsp include problem

2000-12-05 Thread Sachin S. Khanna
, Sachin S. Khanna. www.emailanorder.com - Original Message - From: arun prakash [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, December 06, 2000 6:11 AM Subject: jsp include problem Hi All., I'm dynamically including a jsp file as shown in the following code

JSP include problem

2000-10-13 Thread William Woo
I'm fairly new in JSP. I was having problem with including two results of two serlvets. If I include one serlvet, it works. But not two...! It always displayed only the first one included. Anyone know why??? jsp:include page="Dropdown" flush="true" / jsp:include page="Getdata" flush="true" /