pessoal, nao consigo rodar nenhuma taglib… dá esse erro
org.apache.jasper.JasperException: /index.jsp(2,0) /cabecalhoHTML.jsp(35,0) Unable to load tag handler class "taglib.user.CheckUserLevelTag" for tag "user:checkUserLevel"
o que pode ser?
cabecalhoHTML.jsp
<%@ taglib uri="/WEB-INF/user.tld" prefix="user" %>
...
<user:checkUserLevel equal="Supervisor">
WEB-INF/user.tld
[code] <tag>
<name>checkUserLevel</name>
<tagclass>taglib.user.CheckUserLevelTag</tagclass>
<bodycontent>JSP</bodycontent>
<info></info>
<attribute>
…
</attribute>
</tag>
<tag>[/code]
WEB-INF\src\taglib\user\CheckUserLevelTag.java
package taglib.user;
...
public class CheckUserLevelTag extends TagSupport
{
...
}
tem algo de errado aí?
valeu pessoal![/b]