JSP中param标签用法实例分析

所属分类: 网络编程 / JSP编程 阅读数: 748
收藏 0 赞 0 分享

本文实例分析了JSP中param标签用法。分享给大家供大家参考,具体如下:

Jsp中param标签的使用

<jsp:param>操作被用来以"名-值"对的形式为其他标签提供附加信息。它和<jsp:include>、<jsp:forward>、<jsp:plugin>一起使用,方法如下:

复制代码 代码如下:
<jsp:param name="paramName" value="paramValue"/>

其中,name为与属性相关联的关键词,value为属性的值。

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.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>

希望本文所述对大家JSP程序设计有所帮助。

更多精彩内容其他人还在看

spring动态bean注册示例分享

这篇文章主要介绍了spring动态bean注册示例,需要的朋友可以参考下
收藏 0 赞 0 分享

JSP判断移动设备的正则

天猫php判断移动设备的正则(个人猜测),觉得很好用,于是就决定移植到JSP里面,大家可以参考下
收藏 0 赞 0 分享

jsp文件绝对路径的设置方法

这篇文章主要介绍了jsp文件绝对路径的设置方法,需要的朋友可以参考下
收藏 0 赞 0 分享

jsp与sql语句的混合使用示例

这篇文章主要介绍了jsp与sql语句的混合使用,需要的朋友可以参考下
收藏 0 赞 0 分享

jsp获取action传来的session和session清空以及判断

这篇文章主要介绍了jsp获取action传来的session和session清空以及判断,需要的朋友可以参考下
收藏 0 赞 0 分享

jsp简单自定义标签的forEach遍历及转义字符示例

这篇文章主要介绍了jsp简单自定义标签的forEach遍历及转义字符,需要的朋友可以参考下
收藏 0 赞 0 分享

jsp自定义标签之ifelse与遍历自定义标签示例

这篇文章主要介绍了jsp自定义标签之ifelse与遍历自定义标签,需要的朋友可以参考下
收藏 0 赞 0 分享

JSP加载JS文件不起作用的有效解决方法

jsp导入jquery文件,老是不起作用,原因在于其不能访问/WEB-INF/目录下的文件,下面有个不错的解决方法,大家可以参考下
收藏 0 赞 0 分享

Jsp中如何让图片在div中居中

这篇文章主要介绍了Jsp中如何让图片在div中居中的小技巧,需要的朋友可以参考下
收藏 0 赞 0 分享

使用jsp调用javabean实现超简单网页计算器示例

这篇文章主要介绍了使用jsp和javabean实现超简单网页计算器示例,需要的朋友可以参考下
收藏 0 赞 0 分享
查看更多