好友
阅读权限10
听众
最后登录1970-1-1
|
第一个界面:报考计算机登录界面
<%@ page contentType="text/html; charset=GB2312" %>
<%@ page import ="java.util.*" %>
<html>
<head>
<title>计算机报考页面</title><br>
</head>
<body bgcolor="cyan">
<form method="post" action="ch4_6_show.jsp" name="form1">
<h2><p align="center">网上计算机考试报名系统</h2>
考生姓名:<input type="text" name="stuName" size="8" align="left"><br><br>
登录密码:<input type="password" name="stuPassword" size="8" align="left"><br><br>
性 别:<input type="radio" name="stuSex" value="男" checked="" align="left">男
<input type="radio" name="stuSex" value="女" align="left">女<br><br>
报考科目:<input type="checkbox" name="course" value="Windows XP">Windows XP
<input type="checkbox" name="course" value="WPS office">WPS office
<input type="checkbox" name="course" value="Java 程序设计">Java程序设计<br><br>
学历:<select name="level">
<option value="专科">专科</option>
<option value="本科">本科</option>
<option value="研究生">研究生</option>
<option value="博士">博士</option>
</select><br><br>
报考级别:<select name="exmaclass" size="2">
<option value="高级" selected="true">高级</option>
<option value="中级">中级</option>
</select><br><br>
备注:<textarea name="memo"rows="8" cols="30">在这里输入您报考的备注信息
</textarea><br><br>
<input type="submit" name="submit" value="提交" size="5">
<input type="reset" name="reset" value="重置" size="5">
</form>
</body>
</html>
第二个,显示你报考计算机登录的信息
<%@ page contentType="text/html; charset=GB2312" %>
<%@ page import="java.util.*" %>
<%!
public String chString(String s)
{
String str=s;
try
{
byte b[]=str.getBytes("ISO-8859-1");
str =new String(b);
return str;
}
catch(Exception e)
{
return str;
}
}
%>
<html>
<head>
<title>My JSP 'ch4_5_show.jsp' starting page</title>
</head>
<body bgcolor="cyan">
<%
String strName=request.getParameter("stuName"); //提取信息
String strPassword=request.getParameter("stuPassword");
String strSex=request.getParameter("stuSex");
String strCourse[]=request.getParameterValues("course");
String strSubmit=request.getParameter("submit");
String strLevel=request.getParameter("level");
String strExamclass=request.getParameter("exmaclass");
String strMemo=request.getParameter("memo");
strName=chString(strName); //转码,转为汉字
strSex=chString(strSex);
strcheckbox=chString(checkbox);
strHinfo=chString(strHinfo);
strSubmit=chString(strSubmit);
strLevel=chString(strLevel);
strExamclass=chString(strExamclass);
strMemo=chString(strMemo);
out.print("<h2>网上计算机考试报名系统信息显示:</h2>"); //输出结果
out.print("<br>考生姓名:");
out.print(strName);
out.print("<br>登录密码:");
out.print(strPassword);
out.print("<br>性 别:");
out.print(strSex);
out.print("<br>报考科目:");
if(strCourse==null)
out.print("没有选课");
else
{
for(int k=0; k<strCourse.length;k++)
{
out.print(chString(strCourse[k])+" ");
}
}
out.print("<br>学历:");
out.print(strLevel);
out.print("<br>报考级别:");
out.print(strExamclass);
out.print("<br>备注:");
out.print(strMemo);
out.print("<br>提交按钮:");
out.print(strSubmit+" ");
%>
</body>
</html>
|
免费评分
-
查看全部评分
|
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
|
|
|
|