这个问题可能会暴露我完全缺乏理解,我想就这样吧。一旦 JSP 页面在 Tomcat 上运行,尝试使用以下代码显示图像。请注意,这是对我不起作用的标签:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>George Brown GeoQuest - Welcome</title>
</head>
<body>
<img alt="logo" src="WebContent/GBGeoQuestLogo.gif">
</br>
<h1>Welcome, GB Geoquest Team!</h1>
<form action="/Lab4">
<label>Team Name:
<input type="text" name="name">
</label><br>
<input type="submit" value="Login">
<input type="reset" value="Reset">
</form>
</body>
</html>
我得到的只是左上角的蓝色图像问号符号,而不是我的图像。链接应该在这里可见:http: //postimage.org/image/drnl831pz/
谁能引导我朝着正确的方向前进?