<body>
<from action="research.jsp" method="post">
请输入你的id号:<input type="text" name="id"><br>
<input type="submit" value="提交">
</from>
</body>
research.jsp页面内容如下:
<body>
你要查询的数据是:
<%
Model model=new Model();
int id=Integer.parseInt(request.getParameter("id"));
User user=model.load(id);
out.print(user.getId()+" "+user.getName()+" "+user.getPassword());
%>
</body>
问题:
输入id之后点击提交无反应
action="research.jsp"表示当前路径,检查一下你当前路径是不是能访问research.jsp
没有跳转到research.jsp页面
@April0906: 说了检查一下research.jsp目录是不是和你当前页在同一目录,如果不在同一目录,你需要给定具体的目录,比如action="/research.jsp"代表根目录,就像访问127.0.0.1/research.jsp
@Rich.T: 是在同一目录下的
@April0906: 草,from写错了,应该是form
@Rich.T: 啊!!!!不好意思。。。都没发现。。。。谢谢啦。。。。。
@April0906: 赶紧结帖
id="id"
这个research.jsp就是自己的页面吧,你看下控制台是不是加载这个页面就报错啊,