Re: Non Java Developers, programmers using JSTL and taglibs

2003-02-04 Thread Lyndon Durham
programmers write code to insert the dynamic content into a DOM version of the HTML. -Original Message- From: Lyndon Durham [mailto:[EMAIL PROTECTED]] Sent: Monday, February 03, 2003 3:55 PM To: Tag Libraries Users List Subject: Non Java Developers, programmers using JSTL and taglibs

Re: Error in using JSTL 1.0

2002-12-21 Thread Lyndon Durham
Did you copy the tld's for the tag libraries to your web-inf directory? In addition does your web.xml have the necessary taglib entries in it. Example taglib taglib-uri/c.tld/taglib-uri taglib-location/WEB-INF/c.tld/taglib-location /taglib Kerekes Lajos wrote: Hello!

Re: Select (ing) data based upon todays date

2002-12-19 Thread Lyndon Durham
Define a java.sql.Date object. You should be able to do this with a jsp:useBean declaration. Then simply pass the declared object using its id attribute as a sql:param value=${beandID}/. Your select statement should be Select * from rbh.prjhdr Where end = ? Kevin Passey wrote: Hi all, I

Re: [JSTL] How to get current URL ?

2002-12-16 Thread Lyndon Durham
Have you tried to see if the current URL is stored in the Implicit header or headerValues implicit objects. smallufo wrote: Hi , all : Is there a way to get current URL of the page ? I tried c:out value=${requestScope.requestURL}/ but cannot get it I also tried some other methods in

Unable to output column data from Query

2002-11-26 Thread Lyndon Durham
Greetings Taglib Users, Can someone tell me if this is a bug or user error? I am running a simple query that returns a ResultSet that has one row. I am able to get the row count via c:set var=data value=${testResult.rowCount}/ c:out value=${data}/.

Re: Unable to output column data from Query

2002-11-26 Thread Lyndon Durham
No it was not a typo. Are you referring to the placement of the attributes? Dave Newton wrote: Lyndon Durham wrote: c:forEach items=${tesResult.rows} var=row Was that just a typo? Dave -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto

Re: Unable to output column data from Query

2002-11-26 Thread Lyndon Durham
Yeah that was a typo and the source of the problem. I wonder how come there were no error statements when the tags were interpreted. Thanks for pointing that out to me. Dave Newton wrote: Lyndon Durham wrote: No it was not a typo. Are you referring to the placement of the attributes