习题4_3
编写两个JSP页面,使用一个页面输入一个字符串,另一个页面显示该字符串长度
inputString.jsp
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<body>
<p>input the Strings:
<form action="" method=post name=form>
<input type="text" name=str>
<input type="submit" value="output" name="submit">
</form>
<%
String s=request.getParameter("str");
if(s!=null){
session.setAttribute("str1",s);
response.sendRedirect("computer.jsp");
} %>
</body>
</html>
computer.jsp
pageEncoding&#