小编典典

使用JSP获取文本框值

jsp

我是使用JSP的新手,我需要通过单击按钮从文本框中获取值。我在服务器apache tomcat中使用Java Netbeans。这是这样的…

<table>一旦用户输入值,该文本框将被包含在HTML标记中,他单击按钮,然后将出现一个带有输入值的消息框。

我对JSP不熟悉,这给我带来了麻烦。


阅读 1436

收藏
2020-06-10

共1个答案

小编典典

我的答案非常熟悉第一个答案。

mainPage.jsp

<html>
  <head>
    <title>Your Title Here</title>
  </head>
  <body>
    <form action="sample.jsp" method="POST">
      <input type="text" id="firstname" name="firstname" />
      <input type="submit" value="Submit" />
    </form>
  </body>
</html>

sample.jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<%
    String firstname = request.getParameter("firstname");
    /* 
     * Some code here
     */
%>

我也在使用apache tomcat。

您必须按照第一个答案中所述配置web.xml。

希望能有所帮助。

2020-06-10