I have the following code in my JSP page
<%@ page language="java" import="java.util.Locale"
session="true" buffer="8kb" info="My Page Info" %>
but the "import" tag seems to have no effect. An import directive is
not included in the generated Java source code, and compile errors
result from scriptlet code like:
<%
Locale defaultLocale = Locale.getDefault();
%>
Workaround is to explicitly declare the qualified name of every such
class, but this is incredibly verbose.
Craig McClanahan
===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST". For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".