1. 程式人生 > >EL表示式和request.getParameter()接收請求引數

EL表示式和request.getParameter()接收請求引數

<%@ page contentType="text/html" pageEncoding="gbk"%>
<html>
<head>
<title></title>
</head>
<body>
<h3>通過內建物件接收輸入函式:<%=request.getParameter("ref") %></h3>
<h2>通過EL表示式接收輸入函式:${param.ref}</h2>
</body>

</html>

執行此JSP,在位址列中加上要傳遞的引數

http://localhost:8080/jspp/cui4.jsp?ref="lihua"

其執行結果如下


謹記:param是針對於EL表示式的。