码迷,mamicode.com
首页 > 移动开发 > 详细

jsp隐式对象都包括什么?包括request、response、out、session、application、config、pageContext。

时间:2018-12-31 21:07:41      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:font   text   imp   BMI   customer   col   ext1   sub   sp1   

编写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

jsp隐式对象都包括什么?包括request、response、out、session、application、config、pageContext。

标签:font   text   imp   BMI   customer   col   ext1   sub   sp1   

原文地址:https://www.cnblogs.com/mark-to-win/p/10203173.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!