利用两个JSP页面可以处理表单的提交和显示吗 我写的提交页面是:
<%@pagecontentType="text/html;charset=gb2312"%><html><head><title>数据输入表单</title></hea...
<%@page contentType="text/html;charset=gb2312"%>
<html>
<head>
<title>数据输入表单</title>
</head>
<body>
<from action = "usinggetparameter.jsp" method = "post">
<table border = "0">
<tr><td bgcolor = "red">姓名:</td>
<td><input type = "text" name = "name"></td></tr>
<tr><td bgcolor = "blue">电话:</td>
<td><input type = "text" name = "tel"></td>
<tr><td bgcolor = "yellow">E-mail:</td>
<td><input type = "text" name = "email"></td>
<tr><td colspan = "2" align = "center">
<input type = "submit" value = "确定">
<input type = "reset" value = "取消">
<td></tr>
</table>
</form>
</body>
</html>
处理页面是:
<%@page contentType = "text/html"%>
<%@page pageEncoding="GB2312"%>
<html>
<head><title>JSP PAGE</title></head>
<body>
<%
String name = request.getParameter("name");
String email = request.getParameter("email");
String tel = request.getParameter("tel");%>
HI,<%=name%>你好:<br><br>
你输入的个人信息如下:
姓名:<%=name%><br>
E-mail:<%=email%>
电话:<%=tel%><br>
</body>
</html>
两个文件都放在G:\Program Files\tomcat\apache-tomcat-7.0.37\webapps\tongxing,为什么点击提交的时候页面没有任何反映啊!
点击确定没有任何反应?求助 展开
<html>
<head>
<title>数据输入表单</title>
</head>
<body>
<from action = "usinggetparameter.jsp" method = "post">
<table border = "0">
<tr><td bgcolor = "red">姓名:</td>
<td><input type = "text" name = "name"></td></tr>
<tr><td bgcolor = "blue">电话:</td>
<td><input type = "text" name = "tel"></td>
<tr><td bgcolor = "yellow">E-mail:</td>
<td><input type = "text" name = "email"></td>
<tr><td colspan = "2" align = "center">
<input type = "submit" value = "确定">
<input type = "reset" value = "取消">
<td></tr>
</table>
</form>
</body>
</html>
处理页面是:
<%@page contentType = "text/html"%>
<%@page pageEncoding="GB2312"%>
<html>
<head><title>JSP PAGE</title></head>
<body>
<%
String name = request.getParameter("name");
String email = request.getParameter("email");
String tel = request.getParameter("tel");%>
HI,<%=name%>你好:<br><br>
你输入的个人信息如下:
姓名:<%=name%><br>
E-mail:<%=email%>
电话:<%=tel%><br>
</body>
</html>
两个文件都放在G:\Program Files\tomcat\apache-tomcat-7.0.37\webapps\tongxing,为什么点击提交的时候页面没有任何反映啊!
点击确定没有任何反应?求助 展开
3个回答
展开全部
这个是初学者
1.<input />要关闭
2.<from action="/usinggetparameter.jsp" method="post"></from>
应该是<form action="/usinggetparameter.jsp" method="post">***</form>表示访问当前项目下面的jsp
3.祝你好运。
1.<input />要关闭
2.<from action="/usinggetparameter.jsp" method="post"></from>
应该是<form action="/usinggetparameter.jsp" method="post">***</form>表示访问当前项目下面的jsp
3.祝你好运。
追问
哪个?那个form写没写错不是问题的主要,HTML可以自动识别,,,
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<from action = "usinggetparameter.jsp" method = "post">
这行出错了。。。。
是form啊,不是from
找了半天才发现是这样的错
这行出错了。。。。
是form啊,不是from
找了半天才发现是这样的错
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询