Re: Problem with importing package in JSP

2001-05-28 Thread Christopher Benson
Kris, You're missing the @ sign. You wrote: % page import=3Dpackage.name.* % It should be: %@ page import=3Dpackage.name.* % Take care, Christopher Benson

Re: Problem with importing package in JSP

2001-05-26 Thread Chris Janicki
Is it possible your Classname is not unique?... there might be a name conflict with another class of the same name (in some other package). Original Message On 5/26/01, 5:14:20 AM, Kris Gonzalez [EMAIL PROTECTED] wrote regarding Problem with importing package in JSP: I've got a strange