JSP 复习题及参考答案要点.docx
《JSP 复习题及参考答案要点.docx》由会员分享,可在线阅读,更多相关《JSP 复习题及参考答案要点.docx(22页珍藏版)》请在冰豆网上搜索。
JSP复习题及参考答案要点
编程题
编写程序reg.htm和reg.jsp,做一用户注册界面,注册信息包括:
用户名,年龄,性别。
然后提交到reg.jsp进行注册检验,若用户名为admin,就提示“欢迎你,管理员”,否则,显示“注册成功”并显示出注册信息。
答案略
编写一个简单的登录程序,要求登录页面index.jsp中输入用户名(username)、密码(password),用户点击提交后,验证用户是否输入了用户名、密码。
如果用户名为aaa,密码为aaa,则重定向到登录成功页面reg.jsp进行出来,否则显示index.jsp页面提示请输入用户名和密码。
参考答案:
index.jsp
用户登录
用户名:
密码:
<%
Stringname=request.getParameter("userName");
Stringpassword=request.getParameter("passWord");
if(name!
=null&&password!
=null)
{response.sendRedirect("reg.jsp");}
else{out.println("请输入用户名和密码");}
%>
reg.jsp
<%
Stringname=request.getParameter("userName");
Stringpassword=request.getParameter("passWord");
if(name=="aaa"&&password=="aaa")
{out.println("注册成功"+name+password);}
else{response.sendRedirect("index.jsp");}
%>
分析下面的代码,写出include.jsp的运行结果。
(10分)
include.jsp代码:
<%@pagecontentType="text/html;charset=GBK"%>
这里是显示结果:
<%@includefile="abc.html"%>
<%@includefile="mytxt.txt"%>
<%@includefile="mycode.cod"%>