...from转到一个jsp,但是jsp线执行src中的一个java类并取出想要的值,代...
发布网友
发布时间:2024-10-22 21:00
我来回答
共2个回答
热心网友
时间:2024-10-31 08:04
1.submit.jsp
<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta charset="utf-8" />
<title>提交新闻页面</title>
</head>
<body>
<form action="getSubmit.jsp" method="post" >
标题 <input type="text" name="title"/><p>
正文 <textarea rows="20" cols="50" name="description"></textarea><p>
<input type="submit" value="提交"/>
<input type="reset" value="重置"/>
</form>
</body>
</html>
2.getSubmit.jsp
<%@page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<%@page import="java.io.*"%>
<%@page import="java.util.*"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
</head>
<body>
<%
request.setCharacterEncoding("utf-8");
String title=request.getParameter("title");
String description=request.getParameter("description");
out.print("添加新的新闻:"+title);
out.print("添加新的新闻:"+description);
%>
</body>
</html>
热心网友
时间:2024-10-31 08:06
jsp页面中<% 在这里面写你的代码 然后response 转到另一个jsp页面%>