- 浏览: 347859 次
- 性别:
- 来自: 广州
最新评论
-
wangzi2011wang:
为java_web项目添加spring_MVC框架(JSTL表达式) -
HJFWorld:
ams-all-4.0.jar的包,哪里可以下载?
org/objectweb/asm/Type异常解决办法 -
ccy953384950:
我是用第一种方法解决的!
org/objectweb/asm/Type异常解决办法 -
bugman:
我用第三种方法解决了。谢谢
org/objectweb/asm/Type异常解决办法
文章列表
打开MyEclipse属性,在MyEclipse for Spring 8.6 M2\dropins下新建一个SVN文件夹,再到SVN下新建一个eclipse文件,把site-1.6.18.zip解压下的features和plugins拷贝到新建的eclipse下,重启MyEclipse,就可以了
1.通过数据库
row_number() over(order by 本身表的列名 desc ) seq,
2.通过HTML:
1. <th name="fixcol"><span>序号</span></th>
2. <c:forEach items="${pagination.resultList}" var="list" varStatus="ind">
3.<td>${(pagination.page-1)*10+(ind. ...
PL/SQL Developer
1. Command Window
View nt_affix; 浏览nt_affix
Edit ob_affix; 编辑ob_affix
Drop type nt_affix2 /; 删除nt_affix
Create type nt_affix as table of ob_affix; 创建个nt_affix继承ob_affix
2. OB/NT/PKG都存于这个表名为USER_OBJECTS中
3. OB:
右键点击右边Types新建OB
create or replace type OB_SALECHECKON as object
(
-- Aut ...
fixTable.js
------------
function FixTable() {
var that = this;
/// <summary>
/// 锁定表头和列
/// <para> sorex.cnblogs.com </para>
/// </summary>
/// <param name="TableID" type="String">
/// 要锁定的Table的ID ...
子页面
------------------------
html:
<input type="button" class="com_btn" id="btn_add" style="margin-left: 85%;margin-top: 8px;" value="添加到培训" />
javascript:
<script type="text/javascript">
$(function(){
$("#btn_add&quo ...
1.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
</head>
...
1.SERVICE
public MonthBusiness getThisMonthBusinessAll(String agentID){
Map<String, Object> paramMap = new HashMap<String, Object>();
String sqlStr="select * from table(PKG_SFA_THISMONTHBUSINESSALL.getThisMonthBusinessAll(:I_AGENTID))";
paramMap.put("I_AGENTID", ...
select to_char(trunc(add_months(last_day(sysdate), -1) + 1), 'yyyy-mm-dd') "本月第一天",
to_char(last_day(sysdate), 'yyyy-mm-dd') "本月最后一天"
--Oracle trunc()函数的用法
/**************日期********************/
1.select trunc(sysdate) from dual --2011-3-18 今天的日期为2011-3-18
2.select trunc(sy ...
select
sum(case when type='承保' then count end) As 承保,
sum(case when type='未承保' then count end) As 未承保,
sum(case when type='照会' then count end) As 照会,
sum(case when type='未照会' then count end) As 未照会,
sum(case when type='已回执' then count end) As 已回执,
sum(case when type='未回执' then count end) As 未回执 ...
YSlow是yahoo美国开发的一个页面评分插件,分析页面的不足,指导改进和优化。
-----------------------------------------------------------------------
『Yslow 安装说明』
1.下载FireFox的Add-in Yslow (自己可以找,更安全)
2.安装完成后重启FF,可 ...
<style>
.title
{
width:200px;
white-space:nowrap;
word-break:keep-all;
overflow:hidden;
text-overflow:ellipsis;
}
</style>
<span class=title>客户端解决标题显示太长省略多余部分并加省略号的样式</span>
<div class=title>客户端解决标题显示太长省略多余部分并加省略号的样式</div>
<script type="text/javascript">
function changeStatistics(){
var val = $("#statistics").val();
if(val=="A"){
$("#agents").css("background-color","").removeAttr("disabled");
}else{
$("#agents").css(& ...
/*
* 附件下载
*/
@RequestMapping("/download")
public void downloadPost(HttpServletResponse response,HttpServletRequest request){
BufferedOutputStream bos = null;
try {
InputStream is = AttendanceController.class.getClassLoader()
.getResourceAsStream("/kao ...