- 浏览: 28286 次
- 性别:
- 来自: 上海
最新评论
-
findhappy7:
findhappy7 写道这里有jstl标签说明啊 http: ...
使用JSTL标签 -
findhappy7:
这里有jstl标签说明啊 http://www.web-tag ...
使用JSTL标签 -
caoxiaohui:
梦幻酷酷 写道
OK
天空不空 写道
使用JSTL标签 -
天空不空:
...
使用JSTL标签 -
itlangqun:
这样没意义....要是楼主能加点自己的评论就好很多,呵呵... ...
DWR
文章列表
// 对Date的扩展,将 Date 转化为指定格式的String
// 月(M)、日(d)、小时(h)、分(m)、秒(s)、季度(q) 可以用 1-2 个占位符,
// 年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 位的数字)
// 例子:
// (new Date()).Format("yyyy-MM-dd hh:mm:ss.S") ==> 2006-07-02 08:09:04.423
// (new Date()).Format("yyyy-M-d h:m:s.S") ==> 2006-7-2 ...
- 2008-04-05 11:47
- 浏览 1599
- 评论(0)
http://www.gridshore.nl/blog/index.php?/archives/52-Creating-an-autocomplete-with-Spring-and-DWR.html
http://www.gridshore.nl/blog/index.php?/archives/29-Doing-ajax-with-ajaxtags-and-springframework.html
- 2008-04-04 14:11
- 浏览 1434
- 评论(0)
function isTriDecimal(value){
if(value!=null&&value!=''){
var decimalIndex=value.indexOf('.');
if(decimalIndex=='-1'){
return false;
}else{
var decimalPart=value.substring(decimalIndex+1,value.length);
if(decimalPart.length>2){
return true;
...
- 2008-04-03 18:02
- 浏览 3774
- 评论(0)
In computing, CRUD is an acronym for create, retrieve, update, and delete. It is used to refer to the basic functions of a database or persistence layer in a software system.
CRUD是指在做计算处理时的增加、查询(重新得到数据)、更新和删除几个单词的首字母简写。主要被用在描述软件系统中数据库或者持久层的基本操作功能。
- 2008-04-02 16:26
- 浏览 979
- 评论(0)
http://getahead.org/dwr/getstarted
Getting Started with DWR
There are 2 ways to get started with DWR, the easy way is to download the WAR file and have a look around, however this does not help you see how easily DWR integrates with your current web application, so the following 3 simple steps are r ...
- 2008-04-02 14:13
- 浏览 1337
- 评论(1)
http://www.yuanma.org/data/2007/0320/article_2429.htm
Map names = new HashMap();
Pattern pattern = Pattern.compile("[0-9]*");
Pattern letters_pattern = Pattern.compile("[^a-zA-Z]*");
- 2008-04-01 14:36
- 浏览 2579
- 评论(0)
在JSP的开发中,迭代是经常要使用到的操作。例如,逐行的显示查询的结果等。在早期的JSP中,通常使用Scriptlets来实现Iterator或者Enumeration对象的迭代输出。现在,通过JSTL的迭代标签可以在很大的程度上简化迭代操作。
...
- 2008-04-01 14:29
- 浏览 2427
- 评论(1)