11 2009 档案

摘要:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>舒服的颜色</title><meta http-equiv="Content-Type" content="tex 阅读全文
posted @ 2009-11-26 17:24 曾祥展 阅读(622) 评论(0) 推荐(0) 编辑
摘要:下载 阅读全文
posted @ 2009-11-24 22:04 曾祥展 阅读(1934) 评论(0) 推荐(0) 编辑
摘要:引用COM:Microsoft Office 11.0 Object Library 引用类: using System; using System.Windows.Forms; using Excel = Microsoft.Office.Interop.Excel; 调用: private void button1_Click(objectsender, EventArgse) { Pict... 阅读全文
posted @ 2009-11-24 10:45 曾祥展 阅读(12322) 评论(6) 推荐(4) 编辑
摘要:--统计某月份周情况没有的补0ifobject_id('temp_tb')isnotnulldroptabletemp_tbcreatetabletemp_tb([ID][numeric](18,0)IDENTITY(1,1)NOTNULL,[test_values]intNULL,[time]datetimenull,);goinsertintotemp_tb([test_values],[ti... 阅读全文
posted @ 2009-11-24 09:27 曾祥展 编辑
摘要:create table t( id int identity(1,1), name varchar(50),--商品名称 j int, --入库数量 c int, --出库数量 jdate datetime --入库时间 ) insert into t(name,j,c,jdate) select 'A',100,0,'2007-12-01' insert into t(name,j,c,jda... 阅读全文
posted @ 2009-11-22 15:22 曾祥展 阅读(4230) 评论(0) 推荐(0) 编辑
摘要:/* 作者:邹建 */ /*--同步两个数据库的示例 有数据 srv1.库名..author有字段:id,name,phone, srv2.库名..author有字段:id,name,telphone,adress 要求: srv1.库名..author增加记录则srv1.库名..author记录增加 srv... 阅读全文
posted @ 2009-11-15 09:36 曾祥展 阅读(3407) 评论(1) 推荐(3) 编辑
摘要:<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><htmlxmlns="http://www.w3.org/1999/xhtml"><head><metahttp-equiv="... 阅读全文
posted @ 2009-11-13 12:06 曾祥展 阅读(5448) 评论(14) 推荐(1) 编辑
摘要:html代码定义文本框: javascript代码:或者最简单:例子:引用js:官方:http://james.padolsey.com/javascript/jquery-plugin-autoresize/ 阅读全文
posted @ 2009-11-11 21:27 曾祥展 阅读(2743) 评论(0) 推荐(0) 编辑
摘要:HTML:customInput.jquery.jsCSS: 阅读全文
posted @ 2009-11-10 15:51 曾祥展 阅读(4710) 评论(26) 推荐(2) 编辑
摘要:jquery input checked全选与反选1.3.2的版本 选择 id 姓名 1 学无止境 2 csdn 3 曾祥展 阅读全文
posted @ 2009-11-09 11:33 曾祥展 阅读(1762) 评论(0) 推荐(1) 编辑
摘要:http://en.fileuploadajax.subgurim.net/ 此控件支持如下功能: 1:多文件上传. 2:可以配置最大上传文件个数. 3.自定义js脚本. 4.支持删除已经上传的文件. 5.支持无刷新上传效果(iframe) 6.可配置相关提示文本 此控件是基于iframe方式实现的无刷新,开发人员并不需要开发iframe中的内容页,控件采用当前页来充当iframe的内容页. 注册... 阅读全文
posted @ 2009-11-07 20:38 曾祥展 阅读(4531) 评论(32) 推荐(2) 编辑
摘要:AjaxControlToolkit 控件新建服务 WebServiceWebService.cs 阅读全文
posted @ 2009-11-06 15:52 曾祥展 阅读(1004) 评论(2) 推荐(0) 编辑
摘要:createtable#temp(idintidentity(1,1),zisenvarchar(200))declare@zisenvarchar(200)declare@nintdeclare@rowsintselect@n=1insert#temp(zise)selectprosizefromttselect@rows=@@rowcountwhile@n<=@rowsbeginselect@zise=prosizefromttwhereprosize=(selectzisefrom#tempwhereid=@n)--对字段里面不规则空格进行化为一个空格set@zise=ltrim( 阅读全文
posted @ 2009-11-05 11:25 曾祥展 编辑
摘要:问题:有一个字段prozise在行中有些有一个有些有2个,空格隔开里面数字单位是毫米求长*高*宽的结果结果单位是立方米结果放到prozise1字段中两个的话把第二个放到字段prozise2中字段prozise部分数据如下:1940*1050*135990*730*120990*730*120870*500*50870*500*501260*660*151305*670*761260*660*151305*670*761010*920*1901940*1010*1101010*920*1901940*1010*1101010*920*1901940*1010*1101010*920*190194 阅读全文
posted @ 2009-11-04 11:07 曾祥展 阅读(391) 评论(0) 推荐(0) 编辑
摘要:添加对using System.Runtime.InteropServices的引用 [ DllImport ( "USER32.DLL" ) ] public static extern int GetSystemMenu(int hwnd, int bRevert); [ DllImport ( "USER32.DLL" ) ] public static extern in... 阅读全文
posted @ 2009-11-03 14:50 曾祥展 阅读(1228) 评论(2) 推荐(0) 编辑