Re: Include tag in a conditional statement works ??

2001-09-15 Thread Narasimha Vijaya
Status Distribution September 14, 2001 19:12:46 The message regarding "Re: Include tag in a conditional statement works ??" sent on September 14, 2001 19:12:46 was sent by Status Recipient TypeTo N

Re: Include tag in a conditional statement works ??

2001-09-14 Thread Nikos Vafiadis
;%> <% } %> -Original Message- From: Warty, Koustubh [mailto:[EMAIL PROTECTED]] Sent: ÐáñáóêåõÞ, 14 Óåðôåìâñßïõ 2001 12:01 ðì To: [EMAIL PROTECTED] Subject: Include tag in a conditional statement works ?? Hello, What is I have to do something like this that according to a pa

Re: Include tag in a conditional statement works ??

2001-09-13 Thread Duane Morse
ECTED]] Sent: Thursday, September 13, 2001 2:01 PM To: [EMAIL PROTECTED] Subject: Include tag in a conditional statement works ?? Hello, What is I have to do something like this that according to a particular value I have to change the header of each page ? I tried using the "include"

Include tag in a conditional statement works ??

2001-09-13 Thread Warty, Koustubh
Hello, What is I have to do something like this that according to a particular value I have to change the header of each page ? I tried using the "include" but does not work as it does not work in a conditional statement like if (flag == 1) <%@ include file="a.jsp" %> else if (flag == 2)

JSP INCLUDE TAG

2000-12-27 Thread Unni
Hi, How can I include a page which is residing on a different server.That's can I refer a page URL like "http://www.xyz.com/xy.html" in the include action tag like http://www.xyz.com/xy.html" flush="true"/>.When I give like this,the server is looking for a page with relative URL "http:/

URGENT : JSP INCLUDE TAG BEHAVIOR IN WEBSPHERE

2000-10-06 Thread chawla, yogesh
Hi, I have a problem in Websphere that whenever I use the jsp:include tag in Websphere with the attribute flush=true, it returns an error, that this attribute is not allowed. However when I am not using this attribute for including files dynamically through jsp:include, I am getting incorrect code

Re: include tag and iPlanet web server

2000-09-16 Thread Kachana Ung
Jennifer, Don't forget the flush attribute. Currently, it's only valid value is true, if my memory serves me right. Try something like this: Kachana --- Jennifer Buffington <[EMAIL PROTECTED]> wrote: > Any one having problems using iPlanet web server 4.0 > and include tags? > > I have tried

include tag and iPlanet web server

2000-09-13 Thread Jennifer Buffington
Any one having problems using iPlanet web server 4.0 and and tags this: <%@ include file="Footer.jsp" %> Any ideas? I checked the configuration of the web server, but found nothing. Jennifer Buffington Senior Web Application Developer ACV Insurance Services, Inc. 425.486.1671 x239 www

Re: Invalid Include tag

2000-08-11 Thread Jim Bailey
You forgot the required parameter: The flush="true" is required and it has to be set to true in JSP 1.0 and 1.1. -Original Message- From: Krishnan [mailto:[EMAIL PROTECTED]] Sent: Friday, August 11, 2000 3:56 AM To: [EMAIL PROTECTED] Subject: Invalid Include tag Hi

Invalid Include tag

2000-08-10 Thread Krishnan
Hi all, I am getting invalid include tag as error when i run the following jsp. If i remove the include tag it is working fine. Similarly, if i run the file specified in the include tag separately, it is running fine. I don't know where i am going wrong. Your replies are highly apprec

include tag

2000-03-29 Thread Jyoti Bongarala
Hi! Listees, I have a question which might be very simple. How can I include a file's (test.inc) contents into another file(start.html). I tried (both the files are in the root (public_html in WebLogic) directory of my web server) but it didn't work. Can someone help me with this. I will apprec

Re: how to use jsp include tag

2000-01-05 Thread Arun Thomas
nal Message- > From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, January 05, 2000 7:35 PM > To: Arun Thomas > Cc: [EMAIL PROTECTED] > Subject: Re: how to use jsp include tag > > > Arun Thomas wrote: > > > This is true vis-a-vis the JSP1.

Re: how to use jsp include tag

2000-01-05 Thread Craig R. McClanahan
Arun Thomas wrote: > This is true vis-a-vis the JSP1.0 spec, but JSP 1.1 does have this defined > for use > inside and . Where do you see this in the 1.1 final spec? The only reference I find to is within the context of a element, in Section 2.13.7. The descriptions of (Section 2.13.4) and

Re: how to use jsp include tag

2000-01-05 Thread Arun Thomas
This is true vis-a-vis the JSP1.0 spec, but JSP 1.1 does have this defined for use inside and . -AMT > By the way, according the spec you only use "" inside > a -- > not inside a . === To unsubscribe: mailto [EMAIL PROTEC

Re: how to use jsp include tag

2000-01-05 Thread Shay, Ilana
Thank you for the reply, but it didn't work for me, the logo variable was null. Regards, Ilana Shay. -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 05, 2000 11:55 AM To: [EMAIL PROTECTED] Subject: Re: how to use jsp include tag

Re: how to use jsp include tag

2000-01-05 Thread Craig R. McClanahan
Arun Thomas wrote: > Hans, > > Thanks for the correction. Let me just make sure I understood your point > completely. > > You write that when a tag is used, the content that is > included is the result of processing > the included page. If I had called that page directly with the request > (gi

Re: how to use jsp include tag

2000-01-05 Thread Craig R. McClanahan
"Shay, Ilana" wrote: > Hi, > Is anybody know how to process parameters through that > file? I tried the following: > > > > > > > > > > > But I don't know how to process the parameter in the "Myframe.jsp" file. > Within the included

Re: how to use jsp include tag

2000-01-05 Thread Shay, Ilana
ssage- From: Hans Bergsten [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 04, 2000 9:33 PM To: [EMAIL PROTECTED] Subject: Re: how to use jsp include tag Arun Thomas wrote: > > is a run time include. The contents of the file you are > including, therefore, > should be static (cont

Re: how to use jsp include tag

2000-01-05 Thread Arun Thomas
, January 04, 2000 11:33 PM > To: [EMAIL PROTECTED] > Subject: Re: how to use jsp include tag > > > Arun Thomas wrote: > > > > is a run time include. The contents of the file you are > > including, therefore, > > should be static (contain no JSP) as, at ru

Re: how to use jsp include tag

2000-01-04 Thread Hans Bergsten
hat is included, not the source. So it's perfectly okay for the included page to be a regular JSP page with beans, tags, scriptlets and all that good stuff. It's hard to say what the original poster's problem is since no sample code and/pr error messages was included... > The <%

Re: how to use jsp include tag

2000-01-04 Thread Arun Thomas
on some logic. The actual content object itself must not require further dynamic expansion. The <%@ include ...> tag is a compile time inline include. This is interpreted at compile time, and essentially replaces itself with the contents of the include file. After all these replacements ar

how to use jsp include tag

2000-01-04 Thread Srinivas Kalluri
Hi, I am getting a compile time error when i am trying to include a jsp in another jsp (Using jsp:include tag). The first one is dynamic in content generation. early reply will help me a lot... Thanx kalluri Srinivas === T

Re: Include tag

1999-04-28 Thread Christopher Cobb
Kenneth Borinsky wrote: > Hello, > we are trying to figure out how to deal with JSP implementation of > . We are reviewing JRUN, Sun Servlet Runner, and > several other engines. As far as we understand, JRun includes the > generated contents of include file if it was another .jsp > > Our applic

Re: Include tag

1999-04-28 Thread Arie Fishler
: Re: Include tag Hello, we are trying to figure out how to deal with JSP implementation of . We are reviewing JRUN, Sun Servlet Runner, and several other engines. As far as we understand, JRun includes the generated contents of include file if it was another .jsp Our application requires

Re: Include tag

1999-04-28 Thread Kenneth Borinsky
Hello, we are trying to figure out how to deal with JSP implementation of . We are reviewing JRUN, Sun Servlet Runner, and several other engines. As far as we understand, JRun includes the generated contents of include file if it was another .jsp Our application requires ability to have a separ