Re: JSTL Tag problem!!

2004-08-30 Thread Jason Lea
Sounds like you are using Tomcat 5, which allows EL expressions anywhere. eg instead of you can use ${title} It also means you don't need to use the html-el tags, just use the normal RamKumar wrote: Your works here, the problem is EL not being evaluated So I still recommend you

Re: JSTL Tag problem!!

2004-08-29 Thread Big Chiz
Where is the ending } see error: expected one of ["} On Mon, 30 Aug 2004 12:15:02 +0530, RamKumar <[EMAIL PROTECTED]> wrote: > > > >> Your works here, the problem is EL not being evaluated > > >> So I still recommend you configure the IsELIgnored page directive > > As you said i made IsELI

Re: JSTL Tag problem!!

2004-08-29 Thread RamKumar
>> Your works here, the problem is EL not being evaluated >> So I still recommend you configure the IsELIgnored page directive As you said i made IsELIgnored page directive to false, i got into a new problem that my logic-el tags are not working now. i am getting an error as "According

Re: JSTL Tag problem!!

2004-08-28 Thread Big Chiz
for jstl 1.1 i believe there is no need to put anything on the web.xml. you can just include them in any of your pages. e.g <%@ taglib uri="http://java.sun.com/jsp/jstl/core"; prefix="c" %> On Sun, 29 Aug 2004 02:47:38 +0800, Can Zheng <[EMAIL PROTECTED]> wrote: > Your works here, the problem is

Re: JSTL Tag problem!!

2004-08-28 Thread Can Zheng
Your works here, the problem is EL not being evaluated So I still recommend you configure the IsELIgnored page directive On Sat, 28 Aug 2004 18:18:58 +0530, RamKumar <[EMAIL PROTECTED]> wrote: > > JSTL needs to config in web.xml > > I configured JSTL in web.xml like this. > > >http://jav

Re: JSTL Tag problem!!

2004-08-28 Thread Michael McGrady
RamKumar wrote: Hi All, I am using JSTL in my JSP page for the first time. I am running into a problem with the following tag. and it prints in the page as "${sessionScope.SurveyCreateForm.surveyTitle}" Any clues? thanks, Ramkumar You sure you have not used "(" and ")" instead of "{" a

Re: JSTL Tag problem!!

2004-08-28 Thread RamKumar
> JSTL needs to config in web.xml I configured JSTL in web.xml like this. http://java.sun.com/jstl/fmt /WEB-INF/fmt.tld http://java.sun.com/jstl/fmt-rt /WEB-INF/fmt-rt.tld http://java.sun.com/jstl/core /WEB-INF/c.tld http://java.sun.com/jstl/cor

Re: JSTL Tag problem!!

2004-08-28 Thread Javen Fang
JSTL needs to config in web.xml On Sat, 28 Aug 2004 18:17:42 +0800, Can Zheng <[EMAIL PROTECTED]> wrote: > Seems the evaluation of El was not working. > > You can either set JSP configurations in the web.xml > > or set the IsELIgnored page directive to false in JSP pages. > > > > On Sat, 28

Re: JSTL Tag problem!!

2004-08-28 Thread Can Zheng
Seems the evaluation of El was not working. You can either set JSP configurations in the web.xml or set the IsELIgnored page directive to false in JSP pages. On Sat, 28 Aug 2004 13:37:03 +0530, RamKumar <[EMAIL PROTECTED]> wrote: > Hi All, > I am using JSTL in my JSP page for the first t

JSTL Tag problem!!

2004-08-28 Thread RamKumar
Hi All, I am using JSTL in my JSP page for the first time. I am running into a problem with the following tag. and it prints in the page as "${sessionScope.SurveyCreateForm.surveyTitle}" Any clues? thanks, Ramkumar