Re: Size limit of a jsp in JSP 0.92

2000-09-20 Thread Jennifer Buffington
We are using jsp 0.92 and have many of what I deem large pages (~60 pages printed). We have run into problems when our pages contain many lines of JavaScript at the top of the html. By rearranging the code and putting the Java scriptlets above the JavaScript, the pages were able to compile.

include tag and iPlanet web server

2000-09-13 Thread Jennifer Buffington
footer at the bottom of each of my pages, so I was adding before the /body and /html tags this: %@ include file="Footer.jsp" % Any ideas? I checked the configuration of the web server, but found nothing. Jennifer Buffington Senior Web Application Developer ACV Insurance Ser

Re: Undefined variable or class name

2000-08-25 Thread Jennifer Buffington
Yup, rek only has scope for the try block, you are trying to println outside of rek's scope. Put the out.println statement after your SELECT statement before the catch block: try { etc... ResultSet rek = stmt.executeQuery ("SELECT TOTAL FROM COFFEES WHERE COF_NAME='ARABICA'");

Re: please help

2000-08-23 Thread Jennifer Buffington
use "connection" where you have "con", that will solve your error about "con" being undefined. The rest of the errors look like a CLASSPATH error. -Original Message- From: sumit shah [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 23, 2000 7:37 AM To: [EMAIL PROTECTED] Subject: