我的天空(I Like the feeling)

导航

2011年1月10日 #

ABAP F4 帮助 一例

摘要: *&---------------------------------------------------------------------**& Report Z_LJC_078*&*&---------------------------------------------------------------------**&*&*&---------------------------------------------------------------------*REPORT z_ljc_078 LINE-SIZE 200.tables: mara.parameters: p_s 阅读全文

posted @ 2011-01-10 14:43 TBLANK 阅读(371) 评论(0) 推荐(0) 编辑

2010年2月22日 #

如何生成 调试->异常

摘要: 在工具---自定义---命令选项卡---左边选择调试--右边把异常托到菜单里就可以了。 阅读全文

posted @ 2010-02-22 15:55 TBLANK 阅读(126) 评论(0) 推荐(0) 编辑

2009年11月26日 #

批量修改数据库中某个特定的SCHEMA到另外一个SCHEMA

摘要: use yourDBGodeclare @name sysnamedeclare @OldSchemaName nvarchar(50);--Old Schemadeclare @NewSchemaName nvarchar(50);--New Schema;set @OldSchemaName='XXXXXXX'set @NewSchemaName='dbo'declare csr1 curso... 阅读全文

posted @ 2009-11-26 14:06 TBLANK 阅读(257) 评论(0) 推荐(0) 编辑

2009年10月22日 #

JQuery入门(二)JQuery选择器(层级+属性)(1)(转)

摘要: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><tit... 阅读全文

posted @ 2009-10-22 09:09 TBLANK 阅读(735) 评论(0) 推荐(0) 编辑

2009年9月3日 #

UpdatePanel异步请求完毕的客户端事件

摘要: Sys.WebForms.PageRequestManager.getInstance().add_pageLoaded(function() { alert("异步请求完成");}) 阅读全文

posted @ 2009-09-03 11:40 TBLANK 阅读(139) 评论(0) 推荐(0) 编辑

2009年8月24日 #

javascript技巧大全(转)

摘要: 事件源对象 event.srcElement.tagName event.srcElement.type 捕获释放 event.srcElement.setCapture(); event.srcElement.releaseCapture(); 事件按键 event.keyCode event.shiftKey event.altKey event.ctrlKey 事件返回值 event.ret... 阅读全文

posted @ 2009-08-24 20:14 TBLANK 阅读(214) 评论(0) 推荐(0) 编辑

2009年6月30日 #

Session不丢失设置(转)

摘要: Session丢失已经是一种习以为常的问题了,在自己也了解一些如何解决的问题,但是也一直没有机会去用,现在由于新的项目要在B/S下开发,所以不得不让我考虑Session的问题。解决session丢失的问题有两种方法:1)将session保存在一台sate server中。2)将session保存在sql server中。我们使用的数据库是oracle,不想再装一个数据库,所以用了第一种方法。首先根... 阅读全文

posted @ 2009-06-30 11:10 TBLANK 阅读(443) 评论(0) 推荐(0) 编辑

2009年4月29日 #

JS停止执行

摘要: 原本以为用Return就可以停止执行,后来出错信息提示理由在函数里面才能用Return关键字。<SCRIPT LANGUAGE="JavaScript"><!-- document.execCommand("stop")//--></SCRIPT>相当于Response.End(); 阅读全文

posted @ 2009-04-29 09:29 TBLANK 阅读(2558) 评论(0) 推荐(0) 编辑

2009年4月13日 #

excel导出取消科学技术法

摘要: 在每个TD中添加如下的STYLE <td style="mso-number-format:'\@'"> 阅读全文

posted @ 2009-04-13 19:15 TBLANK 阅读(283) 评论(0) 推荐(0) 编辑

2009年3月17日 #

HTML导出excel 去除科学计数法

摘要: 在相应的TD中加入<td style="mso-number-format:'\@'">即可 阅读全文

posted @ 2009-03-17 11:32 TBLANK 阅读(270) 评论(0) 推荐(0) 编辑