资源描述:
《jsp 复习题及参考答案》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、编程题编写程序reg.htm和reg.jsp,做一用户注册界面,注册信息包括:用户名,年龄,性别。然后提交到reg.jsp进行注册检验,若用户名为admin,就提示“欢迎你,管理员”,否则,显示“注册成功”并显示出注册信息。答案略编写一个简单的登录程序,要求登录页面index.jsp中输入用户名(username)、密码(password),用户点击提交后,验证用户是否输入了用户名、密码。如果用户名为aaa,密码为aaa,则重定向到登录成功页面reg.jsp进行出来,否则显示index.jsp页面提示
2、请输入用户名和密码。参考答案:index.jsp
用户登录
用户名:
密码:
<%Stringname=request.3、getParameter("userName");Stringpassword=request.getParameter("passWord");if(name!=null&&password!=null){response.sendRedirect("reg.jsp");}else{out.println("请输入用户名和密码");}%>reg.jsp
<%Stringname=request.getParameter("userName");Str4、ingpassword=request.getParameter("passWord");if(name=="aaa"&&password=="aaa"){out.println("注册成功"+name+password);}else{response.sendRedirect("index.jsp");}%>yearsmortgagehousing;4.mortgageregistrationformalitiesarecompleted.(D)pledge1.borro
5、wer(includingthepledgor)between18-65yearsofage,withfullcivilcapacity;2.collateral分析下面的代码,写出include.jsp的运行结果。(10分)include.jsp代码:<%@pagecontentType="text/html;charset=GBK"%>这里是显示结果:
<%@includefile="abc.html"%><%@includ
6、efile="mytxt.txt"%>
<%@includefile="mycode.cod"%>