jsp学习 jsp编程白例源代码此部分是指文件夹名为第1~9章中的内容(如表1)

源代码在线查看: count.jsp

软件大小: 1441 K
上传用户: lujing200912345
关键词: jsp 编程 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				 
								int count=1;
				String name=request.getParameter("name");
				try{
				  count=Integer.parseInt((application.getAttribute(name).toString()));
				}catch(Exception e){
				}
				out.print("欢迎光临!该页面已被访问"+count+"次。");
				count++;
				application.setAttribute(name,new Integer(count));
				%>
							

相关资源