vote up 0 vote down star

I am using Struts 1.I have a taglibrary

<%@ taglib prefix="s" uri="/WEB-INF/struts-tags.tld" %>

This tag library works only in Struts 2.0 Framework.This has a tag which I have used in my application.Now when I had to backtrack to Struts 1 I got an error

Could not parse deployment descriptor: java.io.IOException: cannot resolve '/WEB-INF/struts-tags.tld' into a valid tag library probably occurred due to an error

Can anyone suggest how to use in struts 1

flag

30% accept rate

1 Answer

vote up 1 vote down
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>

Then use html:select with the appropiate attributes as explained in the official documentation.

<html:select property="...">
...
</html:select>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.