Re: "Attribute select has no value" error

2004-02-08 Thread Moazam Raja
I found the solution...I had standard.jar in my WEB-INF/lib but I did not have jstl.jar in there. -Moazam Moazam Raja wrote: All, I changed the SQL statement syntax, but I get this error now when I try to compile.. articles.jsp [-1:-1] at java.lang.ClassLoader.defineClass0(Native Meth

Does anyone know of a good file manager...

2004-02-08 Thread Jim Kennedy
JSP tag lib? I want to display a list of files to the end user much like MS explorer. The files will be located in a directory on the server. The user will only be able to read and download the files. They will not be able to navigate, delete or edit. Thanks -

Re: "Attribute select has no value" error

2004-02-08 Thread Moazam Raja
All, I changed the SQL statement syntax, but I get this error now when I try to compile.. articles.jsp [-1:-1] at java.lang.ClassLoader.defineClass0(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:537) .. Do I not have the myS

RE: "Attribute select has no value" error

2004-02-08 Thread Karr, David
Assuming you really did copy this directly from your code, the answer is clear right here: You didn't close the "sql:query" tag with a ">" character, but the "select" line ends with one. Thus, the JSP compiler would think that "select" is an attribute", but you gave it no value. Move the ">"

Re: "Attribute select has no value" error

2004-02-08 Thread Hassan Schroeder
Moazam Raja wrote: I have a JSP page which is trying to connect to a JDBC mySQL database but I keep getting this error when I try to compile: articles.jsp [19:7] Attribute select has no value Errors compiling articles.

"Attribute select has no value" error

2004-02-08 Thread Moazam Raja
Hi all, I'm having a very frustrating problem which is probably very simple to solve. I downloaded the jakarta-taglibs-standard-1.0.5 and have installed it (the standard.jar file) into my webapps WEB-INF/lib area. I'm using Tomcat 4.1.29. I have a JSP page which is trying to connect to a JDBC