JSP中param標籤用法執行個體分析_JSP編程

來源:互聯網
上載者:User

本文執行個體分析了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程式設計有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.