(BAlso see this;
(B
(Bhttp://www.mail-archive.com/[EMAIL PROTECTED]/msg93186.html
(B
(B
(B
(B                                                                                       
(B                                       
(B                    "Siggelkow, Bill"                                                  
(B                                       
(B                    <[EMAIL PROTECTED]        [EMAIL PROTECTED](B:   "'Tag Libraries 
(BUsers List'" <[EMAIL PROTECTED]>           
(B                    irant.com>               cc:                                       
(B                                       
(B                                             $B7oL>(B:   RE: Using the standard 
(B(JSTL) tag library ...                            
(B                    2003/07/31 21:17                                                   
(B                                       
(B                    "Tag Libraries                                                     
(B                                       
(B                    Users List" $B$XJV(B                                             
(B                                             
(B                    $B?.$7$F$/[EMAIL PROTECTED](B                                     
(B                                                       
(B                                                                                       
(B                                       
(B                                                                                       
(B                                       
(B
(B
(B
(B
(BNot with Tomcat 4.1.18 -- Starting with Tomcat 5 you can -- Tomcat
(Bimplements JSP 2.0 (formerly referred to as JSP 1.3) which allows EL
(Banywhere within a page.
(B
(B-----Original Message-----
(BFrom: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
(BSent: Thursday, July 31, 2003 6:55 AM
(BTo: [EMAIL PROTECTED]
(BSubject: Using the standard (JSTL) tag library ...
(B
(B
(B
(B
(B
(B
(B
(B
(BI'm using JWSDP 1.1 that includes  JSTL 1.0.3 under Tomcat 4.1.18
(B
(BCan I use EL  outside of the JSTL tags  ?
(B
(BLike using ${param.server} in the code below:
(B
(B    <frameset cols="20%,*">
(B            <frame name="allpackages"
(Bsrc="allpackages.jsp?server=${param.server}">
(B            <frame name="details" src="details.jsp?server=${param.server}">
(B    </frameset>
(B
(BSo far it doesn't work. I read that there are two versions:
(B      "This document describes an expression language (EL) for JSP. This
(Bexpression
(B      language has two versions: one applicable to the JSP Standard Tag
(BLibrary (JSTL),
(B      the other applicable to JSP 1.3."  (from JavaServerPages: Standard
(BTag Library  V.10)
(Bbut I even don't know what JSP version Tomcat 4.1 supports.
(B
(B-Jorge
(B
(B(Full example below)
(B
(B<%@ taglib uri="http://java.sun.com/jstl/fmt" prefix="fmt" %>
(B<%@ page contentType="text/html"%>
(B<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
(B"http://www.w3.org/TR/html4/frameset.dtd">
(B<html>
(B<head>
(B<link rel="stylesheet" type="text/css" href="../css/default.css" />
(B<title>
(B<fmt:message key="TITLE_INDEX">
(B    <fmt:param value="${param.server}"/>
(B</fmt:message>
(B</title>
(B</head>
(B<frameset rows="22%,*">
(B    <frame name="onheader" src="onheader.jsp?server=${param.server}">
(B    <frameset cols="20%,*">
(B            <frame name="allpackages"
(Bsrc="allpackages.jsp?server=${param.server}">
(B            <frame name="details" src="details.jsp?server=${param.server}">
(B    </frameset>
(B<noframes>
(B<body>
(B</body>
(B</noframes>
(B</frameset>
(B</html>
(B
(B---------------------------------------------------------------------
(BTo unsubscribe, e-mail: [EMAIL PROTECTED]
(BFor additional commands, e-mail: [EMAIL PROTECTED]
(B
(B
(B
(B
(B
(B
(B---------------------------------------------------------------------
(BTo unsubscribe, e-mail: [EMAIL PROTECTED]
(BFor additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to