自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 资源 (2)
  • 收藏
  • 关注

原创 Sql Server 循环插入数据

declare @num int  set @num =1  while(@num  begin   set @num = @num+1   insert student (name,age,address) values('王麻子',22,'北京')  end

2014-07-03 10:36:33 11522

原创 Sql server 使用存储过程分页显示

create proc GetPageList --定义存储过程 @papeIndex int=1,      --定义第几页 @pageSie int=5         --定义每页显示的条数 as                    --定义每页显示的条数   select * from (select  ROW_NUMBER() over(order by id) as num,

2014-07-03 10:33:41 727

原创 委托 与 事件

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication2 {     class Program     {         static void Main(string[] args)      

2014-05-24 16:17:05 574

原创 自己写的委托例子

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication2 {     class Program     {         static void Main(string[] args)      

2014-05-24 16:02:27 572

.net 三层结构登录

用.net写的简单三层结构的一个登录小程序

2012-11-16

jslogo源码

js做的漂亮网站Logo;是源码啊,自己可以研究

2012-09-11

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除