編寫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>