我有一个index.jsp,其代码如下
INDEX.XML
<form method="post" action ="LoginServlet" >
<p> USER ID: </p> <input type='text' name='user' />
<br>
<p> PASSWORD: </p> <input type='password' name='pass'/>
<br>
<input type="submit" value="submit"/>
我有一个具有代码
的loginServletLoginServlet
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException
{
String user = request.getParameter("user");
String pass = request.getParameter("pass");
不知何故,参数没有被传递到我在servlet中设置的变量中。根据我所研究的内容,大多数答案都会指示我纠正我的帖子&#34;我的jsp中的方法。我已经这样做了,但我的代码仍然没有运气。
如果需要,我可以提供有关我整个项目的更多信息。 对不起,如果这看似重复,但我已经看到了大多数答案,我已经完成了。提前抱歉。