编写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>
原文地址:https://www.cnblogs.com/mark-to-win/p/10203173.html
时间: 2024-11-09 00:29:16