I am evaluating Spring 2.5 for a project and am having trouble getting the <form:form> tag to render in a JSP. Here is a snippet from the JSP:
The generated HTML shows the same snippet.Code:<form:form commandName="instSearch"> </form:form>
I have using spring 2.5 and have included the following in the JSP:
and the following in web.xml:Code:<%@taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
The TLD file is also being packaged correctly in the WAR.Code:<taglib> <taglib-uri>/form</taglib-uri> <taglib-location>/WEB-INF/tld/spring-form.tld</taglib-location> </taglib>
Not sure what more I need to do. Thanks in advance for any help.


Reply With Quote
