Displaying image in JSP page
I am trying to display an 开发者_如何学Pythonimage on my JSP page using image tags. May I know what is the tag format i should use? I have stored my image under "image" folder in my project.
check out
<html>
<body>
<img src="angry.gif" alt="Angry face" width="32" height="32" />
</body>
</html>
from http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_image_test
you probably need src="/yourcontextroot/resources/images/yourpic.gif"
精彩评论