主頁 > 知識庫 > JSP中param標(biāo)簽用法實(shí)例分析

JSP中param標(biāo)簽用法實(shí)例分析

熱門標(biāo)簽:阿里云 銀行業(yè)務(wù) 團(tuán)購網(wǎng)站 電子圍欄 服務(wù)器配置 科大訊飛語音識別系統(tǒng) Mysql連接數(shù)設(shè)置 Linux服務(wù)器

本文實(shí)例分析了JSP中param標(biāo)簽用法。分享給大家供大家參考,具體如下:

Jsp中param標(biāo)簽的使用

jsp:param>操作被用來以"名-值"對的形式為其他標(biāo)簽提供附加信息。它和jsp:include>、jsp:forward>、jsp:plugin>一起使用,方法如下:

復(fù)制代碼 代碼如下:
jsp:param name="paramName" value="paramValue"/>

其中,name為與屬性相關(guān)聯(lián)的關(guān)鍵詞,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%>" />//傳遞參數(shù)
/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處理表單數(shù)據(jù)
  form action="checklogin.jsp" method="get">
    table>
      tr>
       td>Username:/td>
       td> //獲得參數(shù)"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"對應(yīng)
    String name = request.getParameter("username");
    //與login.jsp中name="password"對應(yīng)
String password = request.getParameter("password");
    if (name.equals("admin")  password.equals("admin")) {
  %>
  jsp:forward page="success.jsp">//跳轉(zhuǎn)至success.jsp
    jsp:param name="user" value="%=name%>" />//攜帶參數(shù)"user"
  /jsp:forward>
  %
  } else {
  %>
  jsp:forward page="login.jsp">//跳轉(zhuǎn)至login.jsp
    jsp:param name="user" value="%=name%>" />//攜帶參數(shù)"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")%>//獲得參數(shù)"user"
/body>
/html>

希望本文所述對大家JSP程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • JSP用過濾器解決request getParameter中文亂碼問題
  • 基于jsp:included的使用與jsp:param亂碼的解決方法
  • jsp ${param.id}用法
  • JSP中param動作的實(shí)例詳解

標(biāo)簽:萍鄉(xiāng) 廣元 衡水 衢州 江蘇 大理 蚌埠 棗莊

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《JSP中param標(biāo)簽用法實(shí)例分析》,本文關(guān)鍵詞  ;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 收縮
    • 微信客服
    • 微信二維碼
    • 電話咨詢

    • 400-1100-266