打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
Jsp中param标签的使用

Jsp中param标签的使用

jsp 2007-07-24 10:07:41 阅读155 评论0   字号: 订阅

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

<%String str=request.getParameter("number");  //获得includeAction.jsp传来的值

  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>

  <form action="checklogin.jsp" method="get">  //由 checklogin.jsp处理表单数据

    <table>

      <tr>

        <td>Username:</td>

        <td><input type="text" name="username" value=<%=request.getParameter("user") %>></td>  //获得参数"user",初始值为null

      </tr>

      <tr>

        <td>Password:</td>

        <td><input type="password" name="password"></td>

      </tr>

      <tr colspan=2>

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

<%String name=request.getParameter("username");  //与login.jsp中name="username"对应

  String password=request.getParameter("password"); //与login.jsp中name="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>

本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
如何处理JAVA中文乱码问题
jsp乱码问题的解决方法
Ajax中文乱码原因分析及解决方案 [转]
jsp 编码问题
Java开发总结下mate标签的作用 优就业
SESSION对象
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服