Jsp中param标签的使用
@Author:ZJ 07-2-21
Blog: http://zhangjunhd.blog.51cto.com/
其中,name为与属性相关联的关键词,value为属性的值。
填写下面表单即可预约申请免费试听java课程!害怕学不会?助教陪读,随时解惑!担心就业?一地学习,可全国推荐就业!
1.
includeAction.jsp
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<title>Include</title>
</head>
<body>
<%double i = Math.random();%>
<jsp:include page="come.jsp">//加载come.jsp
<jsp:param name="number" value="<%=i%>" />//传递参数
</jsp:include>
</body>
</html> |
come.jsp
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<title>come</title>
</head>
<body bgcolor=cyan>
<Font Size=3>
<%//获得includeAction.jsp传来的值:
String str = request.getParameter("number");
double n = Double.parseDouble(str);
%>
The value form includeAction is:<br> <%=n%>
</Font>
</body>
</html> |
2.
用户登录示例
login.jsp
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<title>Login</title>
</head>
<body>
//由 checklogin.jsp处理表单数据
<form action="checklogin.jsp" method="get">
<table>
<tr>
<td>Username:</td>
<td> //获得参数"user",初始值为null
<input type="text" name="username"
value=<%=request.getParameter("user") %>>
</td>
</tr>
<tr>
<td>Password:</td>
<td>
<input type="password" name="password">
</td>
</tr>
<tr>
<td>
<input type="submit" value="login">
</td>
</tr>
</table>
</form>
</body>
</html> |
checklogin.jsp
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<title>CheckLogin</title>
</head>
<body>
<%
//与login.jsp中name="username"对应
String name = request.getParameter("username");
//与login.jsp中name="password"对应
String password = request.getParameter("password");
if (name.equals("admin") && password.equals("admin")) {
%>
<jsp:forward page="success.jsp">//跳转至success.jsp
<jsp:param name="user" value="<%=name%>" />//携带参数"user"
</jsp:forward>
<%
} else {
%>
<jsp:forward page="login.jsp">//跳转至login.jsp
<jsp:param name="user" value="<%=name%>" />//携带参数"user"
</jsp:forward>
<%
}
%>
</body>
</html> |
success.jsp
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<title>Success</title>
</head>
<body>
Welcome,<%=request.getParameter("user")%>//获得参数"user"
</body>
</html> |
下一篇: 没有了
一级建造师二级建造师消防工程师造价工程师土建职称房地产经纪人公路检测工程师建筑八大员注册建筑师二级造价师监理工程师咨询工程师房地产估价师 城乡规划师结构工程师岩土工程师安全工程师设备监理师环境影响评价土地登记代理公路造价师公路监理师化工工程师暖通工程师给排水工程师计量工程师
执业药师执业医师卫生资格考试卫生高级职称护士资格证初级护师主管护师住院医师临床执业医师临床助理医师中医执业医师中医助理医师中西医医师中西医助理口腔执业医师口腔助理医师公共卫生医师公卫助理医师实践技能内科主治医师外科主治医师中医内科主治儿科主治医师妇产科医师西药士/师中药士/师临床检验技师临床医学理论中医理论