jsp:include and internet explorer

2004-11-30 Thread Thierno Ba
Hi all, I use jsp:include in one of my pages in order to include dynamically JSP pages. Surprisingly, the pages work fine on Netscape and Firefox, but not on Internet Explorer (why am I not surprised!). Has anyone dealt with this kind of issue and already know the magic key for IE? Thierno.

jsp:include and internet explorer

2004-11-30 Thread Rahul P Akolkar
Return Receipt Your jsp:include and internet explorer document :

jsp:include and internet explorer

2004-11-30 Thread sachin . s . zope
Return Receipt Your jsp:include and internet explorer document :

RE: include and internet explorer

2004-11-30 Thread Thierno Ba
Hi all, I have figure out my problem already. It turns out I did not exclude the HTML, HEAD, TITLE, and BODY tags from my included pages... Could not blame Microsoft on this one! :) Thierno. Tel-USA: (321) 206-0323 Cell-USA: (321) 356-8022 -Original Message- From: Thierno Ba

Re: JSTL 1.0 URI vs. JSTL 1.1 URI

2004-11-30 Thread Pierre Delisle
Jason, Make sure your deployment descriptor (web.xml) is servlet 2.4 based, as follows: ?xml version=1.0 encoding=ISO-8859-1? web-app xmlns=http://java.sun.com/xml/ns/j2ee; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation=http://java.sun.com/xml/ns/j2ee

Re: one class implementing many tags

2004-11-30 Thread luca
you were right. The six classes boiled down to something as simple as: public class WallH2 extends HeadingHelper { public WallH2 () { super.level = 2; } } thanks Luca Rahul P Akolkar wrote: luca wrote: are you saying 6 simple classes + a complicated one? Yes. That would work.