Hi,
I have a jsp where I am using the following taglibs
I am using them as below:
The reason I included html-el tag was because with html, I had to use a bean:write for the value and that was not getting passed correctly. Hence, I shifted to <html-el>. But, i am getting the error
The tag handler class for html-el:image (org.apache.strutsel.taglib.html.ELImageTag) was not found on the build path and
Unable to load tag handler class.
I checked my Struts 1.3 distribution and the EL tag library is not a part of core struts 1.3. You'll have to include a separate jar file for it (struts-el-1.3.8.jar in my case). Also if you put that file under WEB-INF\lib folder, you don't need to put the struts-html-el.tld in the WEB-INF folder yourself, the container will load the TLD file from the jar file itself...
namrata suri
Ranch Hand
Joined: Oct 22, 2009
Posts: 31
posted
0
I included the struts-el.jar file and now I am not getting the build path error.
But, when I am compiling, I still get an error as follows for the following line of code
,saying expression cannot be evaluated. The reason I shifted to html-el was so that I could pass the value on to the jsp whenever the image was clicked. I do not know how to proceed further because, <bean:write> is not working under value attribute because of the quotes compatibility issues.