Hi all,
I tried to compile my java code that has the following codes:
The error message I received after compiling are:
the package javax.servlet.jsp does not exist
the package javax.servlet.jsp.tagext does not exist
I have Java SDK Version 1.3. Does it have anything to do with it? How can I install the javax package, then?
Andre
I tried to compile my java code that has the following codes:
Code:
package tags;
import java.util.Date;
import java.utils.DateFormater;
import javax.servlet.jsp.*;
import javax.servlet.jsp.tagext.*;
public class jspDate extends Object implements Tag {
...
}
The error message I received after compiling are:
the package javax.servlet.jsp does not exist
the package javax.servlet.jsp.tagext does not exist
I have Java SDK Version 1.3. Does it have anything to do with it? How can I install the javax package, then?
Andre