<jsp:param>动作标记的用法详解

<jsp:param>动作标记的用法详解

1.<jsp:param>动作标记的语法

<jsp:param name="attName" value="AttValue"/>

2.<jsp:param>动作标记的作用

指定某个参数的值,必须和<jsp:forward>,<jsp:include>,<jsp:plugin> 等一起协同使用

示例:

1<jsp:param><jsp:include>配合使用

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<jsp:param><jsp:forward>配合使用

用户登录示例 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.jspname="username"对应

String name = request.getParameter("username");

//login.jspname="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>

  • 2
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值