gpt4 book ai didi

java - 单击按钮时从 JSP 重定向到 servlet

转载 作者:太空宇宙 更新时间:2023-11-04 14:15:09 25 4
gpt4 key购买 nike

我正在尝试从 JSP 链接到 servlet。单击名称=“conf”的按钮时,我需要重定向到servlet“/Initial”。问题是当我使用 type="button" 时什么也没有发生,而当我使用 type="submit" 时,页面被定向到 servlet“/Initial”并在那里执行操作。我无法识别问题。

这是我的代码:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<%@ page import="reg.serv.*"%>

<!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>Insert title here</title>
</head>
<body>
<form method="post">
<center>
<table border="1" width="30%" cellpadding="3">
<thead>
<tr>
<th colspan="2">Register Here</th>
</tr>
</thead>
<tbody>
<tr>
<td>Username</td>
<td><input type="text" class="" id="username" name="username1" value="" /></td>
</tr>
<tr>
<td>Password</td>
<td><input type="password" name="password1" id="password" value="" /></td>
</tr>
<tr>
<td>Confirm Password</td>
<td><input type="password" name="confirmpassword1" id="confirmpassword" value="" /></td>
</tr>
<tr>
<td>Mobile Number</td>
<td><input type="text" class="" id="mob" name="mob1" value="" /></td>
</tr>
<tr>
<td>Email ID</td>
<td><input type="text" class="" id="email" name="email1" value=" " /></td>
</tr>
<tr>
<td>Address</td>
<td><textarea id="address" name="address1"></textarea></td>
</tr>

<tr>
<td colspan="2">Already registered <a href="Index.jsp">Login Here</a></td>
</tr>
</tbody>

<tr>
<td><input type="button" value="confirm" name="conf" /></td>
<td><input type="reset" value="Reset" /></td>
<td><input type="button" value="Cancel" name="Cr" onclick="openPage('Initial.jsp')" /></td>
</tr>
</table>
</form>

<script type="text/javascript">

function openPage(pageURL) {
window.location = pageURL;
}

</script>

<%
String x = request.getParameter("conf");

if (x != null && x.equals("confirm")) {
//response.sendRedirect("/Initial");
RequestDispatcher dispatcher = request.getRequestDispatcher("/Initial");
dispatcher.forward(request, response);
}
%>

</body>
</html>


请帮我 。任何帮助将不胜感激。谢谢你。

最佳答案

你必须写

<form action=/your_servlet_page_name>

你必须使用

<input type="submit" value="confirm" name="conf"/>

而且您还必须将 servlet 页面映射到 web.xml 文件中,例如

<servlet-mapping>
<servlet-name>CheckLogin</servlet-name>
<url-pattern>/CheckLogin</url-pattern>
</servlet-mapping>

关于java - 单击按钮时从 JSP 重定向到 servlet,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27846377/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com