国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JSP > 正文

JSP中param標簽用法實例分析

2020-07-27 21:29:50
字體:
來源:轉載
供稿:網友

本文實例分析了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程序設計有所幫助。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 张家界市| 沁阳市| 汤原县| 彭山县| 景洪市| 临武县| 静安区| 轮台县| 乌拉特后旗| 武清区| 浙江省| 鄄城县| 政和县| 卢湾区| 鄯善县| 资阳市| 江西省| 青海省| 红桥区| 渑池县| 辉南县| 芷江| 凌云县| 绥化市| 新余市| 象州县| 平乡县| 泰来县| 弋阳县| 临武县| 嵊州市| 阜新| 巩留县| 杂多县| 赤水市| 新津县| 绿春县| 报价| 无为县| 成都市| 叙永县|