Thanks. I thought it was something to do with Tomcat. I am compiling the
file using NetBeans. It is progressing.
thanks,
suba suresh.
Christopher Schultz wrote:
Suba,
If this is the wrong group to post this question let me know. I am new
to jsp.
This probably /is/ the wrong place to post a question about JSP,
although most of the readers of this group are well-versed.
org.apache.jasper.JasperException: Unable to compile class for JSP
An error occurred at line: 120 in the jsp file: /results.jsp
Generated servlet error:
String literal is not properly closed by a double-quote
Your code snippet does not seem to contain the action error ("String
literal is not properly closed by a double-quote"). Try looking around
your code for a place where you tried to define a string, but forgot to
put a " at the end, like this:
String foo = "bar;
Note that it should be changed to this:
String foo = "bar";
Good luck,
-chris
---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]