搜索到与相关的文章
编程技术

in_place_editing使用小记

in_place_editing是一个用于原地编辑的ajax小控件。典型的效果:首先请下载相关的rails插件,大家注意:我这里的rails版本是2.1.2,所以原始的插件需要改进。插件原始地址:http://svn.rubyonrails.org/rails/plugins/in_place_editing/插件相关改进的讨论:http://railsforum.com/viewtopic.php?id=22457这是我根据相关的讨论修改后的版本:htt

系统 2019-08-29 22:17:13 2243

编程技术

JSTL中的fn函数总结

首先在WEB配置页面中添加tld文件其次,然后再WEB.XML文件中配置说明/hb/WEB-INF/taglibs/c.tld

系统 2019-08-29 22:11:07 2243

编程技术

Sql常见问题总结二(Sql语句怎么样查询IP,游标

文章导航SQLServer2005学习笔记系列文章导航(存储过程,视频,索引,Clr,各种工具使用)这篇文章是上篇SQl使用方法总结的延续篇1.当很多在共用你自己的数据时,时不时的会报这种错误“已超过了锁请求超时时段”直接把下在面的存储过程放到你的Master数据库执行一下就可以了ViewCodesetANSI_NULLSONsetQUOTED_IDENTIFIERONgoALTERProc[dbo].[Sp_KillAllProcessInDB]@DbN

系统 2019-08-29 22:05:07 2243

各行各业

实现IConfigurationSectionHandler接口来编写自

发表时间:2008-4-410:55:00代码如下:usingSystem;usingSystem.Collections;usingSystem.Collections.Generic;usingSystem.Text;usingSystem.Configuration;usingSystem.Xml;namespaceBeyondbit.Portal.ConfigService{publicclassTopMenuConfigItem{publicst

系统 2019-08-12 09:26:59 2243

各行各业

2007 春季(3月)装机

推荐配置:方案一:速龙AMDAthlon64X23800+3600+映泰TForce550SE主板显卡GF7600GT256MPCI-E16*内存1G*2方案二:速龙3200+(450元!!!!!)映泰Tf6100主板显卡主板集成且支持dx9c内存1G*2方案三:CPU:PD820主板:945G显卡:集成支持dx9c内存:1G*2方案四:CPU:PD820主板:945p显卡:GF7600GT内存:1G*2夏季:CPU赛扬420(酷睿单核版)260元左右,比

系统 2019-08-12 09:26:58 2243

各行各业

maven ClassNotFoundException: org.springfram

信息:StartingServletEngine:ApacheTomcat/6.0.322012-3-319:39:40org.apache.catalina.core.StandardContextlistenerStart严重:Errorconfiguringapplicationlistenerofclassorg.springframework.web.context.ContextLoaderListenerjava.lang.ClassNotF

系统 2019-08-12 09:26:52 2243

数据库相关

WP7获取ISolatedStorage指定文件夹下所有子文件

获取ISolatedStorage指定文件夹下所有子文件夹:string[]folderlist;IsolatedStorageFileiso=IsolatedStorageFile.GetUserStoreForApplication();if(iso.DirectoryExists("folder")){folderlist=iso.GetDirectoryNames(System.IO.Path.Combine("folder","*"));}获取I

系统 2019-08-12 01:55:23 2243

数据库相关

对300万一张表数据,用游标进行循环,不同写法

对300万一张表数据,用游标进行循环,不同写法的效率比较1、显示游标declarecursorcur_2isselecta.cust_namefromea_cust.cust_infoa;cust_idvarchar2(100);beginopencur_2;loopfetchcur_2intocust_id;exitwhencur_2%notfound;NULL;endloop;closecur_2;end;--耗时48秒2、隐式游标declarebeg

系统 2019-08-12 01:54:18 2243

数据库相关

JS特殊字符过滤,防止xss和sql注入。

functionstripscript(s){varpattern=newRegExp("[%--`~!@#$^&*()=|{}':;',\\[\\].<>/?~!@#¥……&*()——|{}【】‘;:”“'。,、?]")//格式RegExp("[在中间定义特殊过滤字符]")varrs="";for(vari=0;i

系统 2019-08-12 01:53:44 2243