Ok, i've got this file here :
----------------------------------------------------------------------------
-------------
package au.com.multemedia.wf.ui;
import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.jsp.*;
import org.apache.jasper.runtime.*;
public abstract class PageBase extends HttpJspBase {
public String formcode() {
return "\tcheck_off = new Image(13,13);\n" +
"\tcheck_off.src = \"/images/interface/check_off.gif\";\n" +
"\t\n" +
"\tcheck_on = new Image(13,13);\n" +
//Snipped some text
"\n";
}
}
----------------------------------------------------------------------------
-------------
and I'm using <%@ page extends="au.com.multemedia.wf.ui.PageBase" %> so I
know that the class is being imported properly, but the line
<%= this.formcode() %>
causes my page to fail with a classnotfound exception. Any idea why?
-Josh
"Rimmer, real dumplings, proper dumplings when they're properly
cooked to perfection, proper dumplings, should not bounce."
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>