<head>
<title>TODO supply a title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<form action="UserServlet" method="POST">
<label>Enter your first name:</label><br>
<input type="text" name="first_name" value="" /><br>
<label>Enter your last name:</label><br>
<input type="text" name="last_name" value="" /><br>
<label>Enter your age:</label><br>
<input type="text" name="age" value="" size="1" maxlength="3"/></br>
<input type="submit" value="Send" name="submit" />
</form>
</body>
</html>
这是我的第一个网站。我运行它,输入值,单击按钮,出于某种原因,它一直打开confirm.jsp文件,而不是我在中指定的userservlet <form>
. 有什么我不知道的吗?jsp代码或userservlet代码与此相关吗?
暂无答案!
目前还没有任何答案,快来回答吧!