jsp隐式对象都包括什么?包括request、response…

2019-01-01 23:18:30来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

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

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:SpringBoot(二十一)IntelliJ IDEA配置Quartz启动项

下一篇:springboot从入门到精通(二)