常用jsp对象out request response session applocation
jsp九大内置对象其他对象 Page pageContext exception config
jsp九大内置对象其他对象 Page pageContext exception config
2018-04-05
<%
int number=-1;
// 说明用户第一次访问页面,计数器对象还未创建
if(application.getAttribute("counter")==null)
{
application.setAttribute("counter", 0); }
number = Integer.parseInt(application.getAttribute("counter").toString());
number++;
application.setAttribute("counter", number);
%>
老师源码里的 记录访问此页面的用户数量
int number=-1;
// 说明用户第一次访问页面,计数器对象还未创建
if(application.getAttribute("counter")==null)
{
application.setAttribute("counter", 0); }
number = Integer.parseInt(application.getAttribute("counter").toString());
number++;
application.setAttribute("counter", number);
%>
老师源码里的 记录访问此页面的用户数量
2018-04-03
<a href ="request.jsp?username=李四">测试url传参</a>
显示结果:
用户名:李四
爱好:没有爱好传过来!
(没有乱码,用的谷歌浏览器,或者其他有什么和老师不同)
显示结果:
用户名:李四
爱好:没有爱好传过来!
(没有乱码,用的谷歌浏览器,或者其他有什么和老师不同)
2018-04-03
jsp脚本中那个String s=sdf.format(new Date());中Date()错了吧,老师在<% page import="">中只导入了java.text.*,并没有导入Date的包
2018-04-01