var url = "${pageContext.request.contextPath}/group!findById.action?group.id="+idAll;
window.showModalDialog(url,null,"dialogwidth:850px;dialogheight:550px; toolbar=no,top=200,left=200, menubar=no,...
分类:
其他好文 时间:
2014-09-10 12:31:50
阅读次数:
171
(1)传统的方法
(2)使用C标签 用的时候导入 标签库...
分类:
其他好文 时间:
2014-09-09 21:36:59
阅读次数:
237
声明
实习森的理解层次,希望有错大家一起纠正
本文主要信息来自网友共享的一个JSPAPI,不是特别全,只是对jsp内置对象进行了简单的介绍,这里我总结了一下
正文
Jsp主要内置了9个对象,分别为:Application、Exception、Out、PageContext、Page、Request、Response、Session以及Config,详细如下:
Applicat...
分类:
Web程序 时间:
2014-09-01 00:30:32
阅读次数:
178
(1)pageContext对象这个对象代表页面上下文,该对象主要用于访问JSP之间的共享数据。pageContext是PageContext类的实例,使用pageContext可以访问page、request、session、application范围的变量。getAttribute(String...
分类:
其他好文 时间:
2014-08-26 13:13:56
阅读次数:
180
1.jsp的九大隐式对象
request
HttpServletRequest
response HttpServletResponse
session HttpSession
application
ServletcContext
config ServletConfig
exception
(特殊情况下使用)
page
this(本JSP页面)
ou...
分类:
Web程序 时间:
2014-08-23 20:24:31
阅读次数:
205
equest是封装client端(也就是用户通过browser)提交的请求数据和属性的对象。response是封装web server端响应数据和属性的对象。我们经常会将pageContext、request、session和application混为一谈,因为它们都可以通过setAttribute...
分类:
移动开发 时间:
2014-08-22 15:52:48
阅读次数:
189
实现文件下载1.新建一个SmartUpload对象SmartUpload su = new SmartUpload();2.初始化su.initialize(pageContext);3.设定contentDisposition为null,以禁止浏览器自动打开文件,保证单机链接后是下载文件,若不设定...
分类:
Web程序 时间:
2014-08-17 10:25:11
阅读次数:
186
EL找不到属性会返回“” page –- request --- session --- application ------------------------------- 通过EL获得java对象类型 ${pageScope.person.name} ==pageContext.getAttr...
分类:
其他好文 时间:
2014-08-14 19:23:09
阅读次数:
180
1> ServletContext--------->SessionContext>RequestContext>PageContext一个 WEB 运用程序只有一个ServletContext实例, 它是在容器(包括 JBoss, Tomcat 等)完全启动 WEB 项目之前被创建, 生命周期伴随...
分类:
其他好文 时间:
2014-08-12 12:48:44
阅读次数:
172
var confirmOrderForm=document.getElementById("confirmOrderForm");
var url="${pageContext.request.contextPath }/confirmOrder/confirmOrder.action?team=aa";
alert(url);
confirmOrderForm.action=url;
c...
分类:
其他好文 时间:
2014-08-08 02:05:05
阅读次数:
126