2

What is the difference between the following struts html tags:

"html:image" and "html:img"

I searched through the apache docs, but couldn't find the difference though.

nerdbytes
  • 53
  • 2
  • 7

1 Answers1

3

html:image renders a input tag of type 'image' (it's like a submit button but with an image face)

html:img renders a img tag to place an image

Mauricio
  • 5,854
  • 2
  • 28
  • 34