JSP中頁面向Action傳遞參數的幾種方式

來源:互聯網
上載者:User

<form name="ThisForm" method="POST" action="index.jsp">

form是表單,雙引號裡面要填寫的是 你希望將這個表單提交到什麼路徑。(比如另外一個頁面)。

method="post"指的是提交的方式,post的意思是提交的時候不在地址欄顯示你的提交資訊(比如帳號密碼之類的)。為了使用者的資訊安全。
name=""這裡雙引號裡面指的是你想給你的這個表單取的一個名字。

JSP頁面中有哪些方法可以傳遞參數?頁面的參數怎麼傳遞到action?

jsp中的參數傳遞
1:利用表單來傳遞值:
    <form action="target.jsp"> <input type=text name="usename" value="tom"></form>
2:l利用隱藏欄位來傳遞值
   <form action="target.jsp"> <input type=hidden name="test" value="test"></form>
3:利用cookie對象來傳遞
Cookie cookie=new Cookie("my","liuliu")
cookie.setMaxage(60*60);(以秒為單位)最大的生命週期
response.addCookie(cookie);
Cookie[] cookies=request.getCookies();(可以通過遍曆此數組來訪問值)
4:session
***java.util.Map<String, Object> session = ActionContext.getContext().getSession();
***session.put("s_username", username);
***String username = (String) session.get("s_username");
session.setAttribute("paramName",paramname);
String name=session.getAttribute("paramName")
5:通過連結來傳遞
String name=request.getParameter("name");
<a href="welcome.jsp?name=<%=name%>">


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.