摘要: 查看java官方文档:http://tomcat.apache.org/tomcat-5.5-doc/jspapi/javax/servlet/jsp/tagext/JspFragment.html :abstract voidinvoke(java.io.Writerout)Executes the fragment and directs all output to the given Writer, or the JspWriter returned by the getOut() method of the JspContext associated with the fragment 阅读全文
posted @ 2010-10-11 21:52 qiang.xu 阅读(1280) 评论(0) 推荐(0) 编辑
摘要: 本文主要是关于jap中“自定义标签”,主要包含:1.使用jsp编写simple tag handler2.使用java代码实现simple tag handler1.使用jsp编写simple tag handler1.HelloWorld.tag编写HelloWorld.tag,如下,注意需要将HelloWorld.tag文件放置在/WEB-INF/tags/目录中。Hello World!HelloWorld.jsp<%@ page language="java" import="j 阅读全文
posted @ 2010-10-11 21:44 qiang.xu 阅读(395) 评论(0) 推荐(0) 编辑
摘要: 本文主要是对jstl的一个简单介绍。1.一般用途的动作2..条件动作3.重复动作4.url处理动作5.xml动作6.sql动作7.字符串处理函数1.一般用途的动作<c:out>,输出数据<c:set><c:remove><c:catch>2.条件动作<c:if><c:choose><c:when><c:otherwise>3.重复动作<c:forEach&am 阅读全文
posted @ 2010-10-11 20:15 qiang.xu 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 本文主要设计的是el表达式的相关简单介绍.1.算术运算2.关系运算3.逻辑运算4.empty运算5.jsp页面中调用自定义函数 6.el中默认的隐含对象1.相关运算 <body> <!-- 算术表达式 --> 1 + 2 : ${ 1 + 2}<br/> <!-- 关系表达式 --> 1 < 2 : ${ 1 < 2 }<br/> <!-- empty表达式,判断当前的表达式的值 阅读全文
posted @ 2010-10-11 19:57 qiang.xu 阅读(293) 评论(0) 推荐(0) 编辑