jsp隐式对象都包括什么?包括request、response、out、session、application、config、pageContext。
程序员文章站
2024-01-26 15:51:34
jsp隐式对象都包括什么?包括request、response、out、session、application、config、pageContext。 ......
编写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>