编写两个jsp页面,input.jsp和computer.jsp,用户使用input.jsp
编写两个jsp页面,input.jsp和computer.jsp,用户使用input.jsp提供的表单输入一个字符串,并提交给computer.jsp,该页面通过内置对象...
编写两个jsp页面,input.jsp和computer.jsp,用户使用input.jsp
提供的表单输入一个字符串,并提交给computer.jsp,该页面通过内置对象获取input.jsp页面提交的字符串,计算并显示该字符串的长度。 展开
提供的表单输入一个字符串,并提交给computer.jsp,该页面通过内置对象获取input.jsp页面提交的字符串,计算并显示该字符串的长度。 展开
1个回答
展开全部
input.jsp:
<%@ page language="java" pageEncoding="GB18030"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>input</title>
</head>
<body>
<form action="computer.jsp">
请输入一个字符串<input type="text" name="str" />
<input type="submit" value="提交">
</form>
</body>
</html>
computer.jsp:
<%@ page language="java" pageEncoding="GB18030"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
String str = request.getParameter("str") ;
int len = str.length() ;
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>computer</title>
</head>
<body>
您提交的字符串为:<%=str %>,长度为:<%=len %>
</body>
</html>
<%@ page language="java" pageEncoding="GB18030"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>input</title>
</head>
<body>
<form action="computer.jsp">
请输入一个字符串<input type="text" name="str" />
<input type="submit" value="提交">
</form>
</body>
</html>
computer.jsp:
<%@ page language="java" pageEncoding="GB18030"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
String str = request.getParameter("str") ;
int len = str.length() ;
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>computer</title>
</head>
<body>
您提交的字符串为:<%=str %>,长度为:<%=len %>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询