上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 28 下一页
摘要: using System;using System.Collections.Generic;using System.Data;using System.Linq;using System.Web;namespace _2_一般处理程序{ /// /// 下载文件 的摘要说明 /... 阅读全文
posted @ 2015-05-21 22:34 linyongqin 阅读(435) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Drawing;using System.Drawing.Imaging;using System.IO;using System.Linq;using System.Text;us... 阅读全文
posted @ 2015-05-21 21:37 linyongqin 阅读(153) 评论(0) 推荐(0) 编辑
摘要: Random.Next 方法 (Int32, Int32)参数minValue类型:System.Int32返回的随机数的下界(随机数可取该下界值)。maxValue类型:System.Int32返回的随机数的上界(随机数不能取该上界值)。maxValue必须大于或等于minValue。返回值类型:... 阅读全文
posted @ 2015-05-20 15:25 linyongqin 阅读(332) 评论(0) 推荐(0) 编辑
摘要: SQL update select语句最常用的update语法是:UPDATE TABLE_NAMESET column_name1 = VALUE WHRER column_name2 = VALUE如果我的更新值Value是从一条select语句拿出来,而且有很多列的话,用这种语法就很麻烦第一,... 阅读全文
posted @ 2015-05-20 14:17 linyongqin 阅读(251) 评论(0) 推荐(0) 编辑
摘要: NPOI官网NPOI教程using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using NPOI.SS.UserModel;usi... 阅读全文
posted @ 2015-05-18 22:47 linyongqin 阅读(202) 评论(0) 推荐(0) 编辑
摘要: Microsoft Visual Studio International Pack 下载地址using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threadi... 阅读全文
posted @ 2015-05-18 22:26 linyongqin 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 委托的使用声明委托的方式:delegate返回值类型委托类型名(参数)比如delegatevoidMydel(intn)注意这里的除了前面的delegate,剩下部分和声明一个函数一样,但是Mydel不是函数名,而是委托类型名存储什么样的方法就声明什么类型(方法参数与返回值)的委托。声明的委托是一种... 阅读全文
posted @ 2015-05-16 11:30 linyongqin 阅读(131) 评论(0) 推荐(0) 编辑
摘要: XML 教程http://www.w3school.com.cn/xml/index.asp1.读取XMLusing System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Th... 阅读全文
posted @ 2015-05-14 21:55 linyongqin 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 很多时候,在数据库中某表某字符字段中,要存储的数据内容会含有单引号,比如下面:string name = GetNameById(id);string sql = string.Format("update cover_diagnose set name = '{0}' where id = 489... 阅读全文
posted @ 2015-04-15 15:27 linyongqin 阅读(432) 评论(0) 推荐(0) 编辑
摘要: 先说基本情况:数据库:DB2 8.2,SQL Server 2005 Express表a有字段:aaa,bbb,还可能有其他字段。记录条数:3764表b有字段:aaa,bbb,还可能有其他字段。记录条数:4127够明显了吧,就是表a的字段aaa跟表b的字段aaa有对应关系,就是表a字段的bbb跟表b... 阅读全文
posted @ 2015-04-14 10:28 linyongqin 阅读(3036) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 28 下一页