Re: declaring a class in JSP

2000-12-14 Thread Thomas Schreiner
- Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, December 14, 2000 8:48 AM Subject: declaring a class in JSP Yo dudes, I have this JSP: % private class Something{} % You forgot the Exclamation Mark (!) The correct Syntax is: %! private class

Re: declaring a class in JSP

2000-12-14 Thread Bryan Basham
I have this JSP: % private class Something{} % this get's rejected by Jasper. Is there any reason why? Someone recommended the syntax %! [[decl]] % Remember that all such declarations are embedded in the servlet class that is generated for you. The upshot: your Something class will

RE: declaring a class in JSP

2000-12-14 Thread Dave Newton
Yo dudes, I have this JSP: % private class Something{} % You forgot the Exclamation Mark (!) The correct Syntax is: %! private class Something{} I thought he forgot the semicolon~it's legal to do a declaration without the ! (isn't it?! :) Dave

RE: declaring a class in JSP

2000-12-14 Thread Randy Layman
Basham [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 14, 2000 11:15 AM To: [EMAIL PROTECTED] Subject: Re: declaring a class in JSP I have this JSP: % private class Something{} % this get's rejected by Jasper. Is there any reason why? Someone recommended the syntax %! [[decl

declaring a class in JSP

2000-12-13 Thread romain
Yo dudes, I have this JSP: % private class Something{} % this get's rejected by Jasper. Is there any reason why? Sloot.