欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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>

详情请见:http://www.mark-to-win.com/index.html?content=jsp/jspurl.html&chapter=jsp/jsp3_web.html#jspimplicitobjectincludewhich