Posted By:
Dmitry_Ivlev
Posted On:
Monday, March 19, 2001 07:38 PM
You can not do it because JSP page compiled in java class with name generated by JSP engine and depends of it. Better put all constants in java class. For example:
public class MyConsts {
static public final String hello = "Hello";
}
and on the JSP page use them
<%=MyConsts.hello%>