jsp隱式物件都包括什麼?包括request、response、out、session、application、config、pageContext。

馬克-to-win發表於2018-12-31

編寫jsp時,Sun公司提供了便利,request、response、out、session、application、config、pageContext(代表本頁)可以直接用,叫做隱式物件。想想jsp會被轉成一個Servlet,這些物件就自然會用了。(視訊下載) (全部書籍)

例 2.1

a.html:

<html>
<body bgcolor=”red”>
<form action=”jsp1.jsp”>
Customer Name: <input type=text name=text1>
<input type=submit value=Enter>
</form>
</body>
</html>

jsp1.jsp

<html>
<body bgcolor=green>
<%
String name=request.getParameter(“text1”);
%><font color=red>

詳情請見:http://www.mark-to-win.com/index.html?content=Jsp/jspUrl.html&chapter=Jsp/jsp3_web.html#JspImplicitObjectIncludeWhich

相關文章