I have the following index page:
<form action ="home.jsp"> Insert any v1 form : <input type ="text" name="v1"/> <input type ="submit" value="click"/> </form>
as well as home.jsp:
<%@taglib uri="WEB-INF/mytag.tld" prefix="mak"%> <mak:you verb="${param.v1}"></mak:you>
I get this error
According to the TLD or attribute directive in the tag file, the attribute verb does not accept any expressions
can anyone help?
source share