还没有开始飞的笨鸟
sealearner
全部博文(55)
2009年(16)
2008年(39)
sealicei
格伯纳
Bsolar
hzflxj
wanghong
chenguof
秦朝木简
zhangzho
xnf117
分类: 系统运维
2008-06-12 15:22:18
<jsp:include page="/a.jsp"/>
request.getRequestDispatcher("/a.jsp").include(request, response);
<jsp:forward page="/a.jsp"/>
request.getRequestDispatcher("/a.jsp").forward(request, response);
<jsp:forward page="/a.jsp"> <jsp:param name="id" value="007"/> <jsp:param name="name" value="michael"/></jsp:forward>
<jsp:useBean id="stu" class="com.dlut.zxf.Student" scope="session"/>
com.dlut.zxf.Student stu = new com.dlut.zxf.Student();session.setAttribute("stu", stu);
<jsp:setProperty name="stu" property="name" value="michael"/>
stu.setName("michael");
<jsp:getProperty name="stu" property="name"/>
out.print(stu.getName());或<%=stu.getName()%>
上一篇:CONVERT函数 [数据类型转换]
下一篇:深入探究JFreeChart
登录 注册