2015年4月30日

摘要: 简单写了个C# 以正则获得URL地址栏参数的方法 public static string GetPara(string url, string name) { Regex reg = new Regex(@"(?:^|\?|&)" + name +... 阅读全文
posted @ 2015-04-30 17:06 jerron 阅读(845) 评论(0) 推荐(0) 编辑

2015年4月28日

摘要: C#扩展方法的实现,可用于通过定义接口方法,实现多类继承。using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication12{ //定义... 阅读全文
posted @ 2015-04-28 16:37 jerron 阅读(266) 评论(0) 推荐(0) 编辑

2015年4月16日

摘要: /*------------------------------------------------------------------------------- 功能: 生成表记录的SQL语句(注TEXT与NTEXT字段导出为NULL)参数说明: @Table_Name 表名 @IsPrint 是... 阅读全文
posted @ 2015-04-16 11:44 jerron 阅读(486) 评论(0) 推荐(0) 编辑

2015年3月17日

摘要: EntityFramework C# SQL 更新结构 阅读全文
posted @ 2015-03-17 16:23 jerron 阅读(1648) 评论(0) 推荐(0) 编辑
摘要: /**************************************************************名 称: fn_split_text功能简介: [将文本 按 分隔符 拆分成临时表]参数简介: [@text] 需拆分的文本 返回: 表: subcolst... 阅读全文
posted @ 2015-03-17 15:15 jerron 阅读(665) 评论(0) 推荐(0) 编辑

2015年3月11日

摘要: sql 阅读全文
posted @ 2015-03-11 10:25 jerron 阅读(189) 评论(0) 推荐(0) 编辑

2015年3月6日

摘要: 在服务端 web.config添加以下配置 客户端脚本如下: Get $.ajax({ url: "http://localhost:49302/api/meeting/login/xxx", ... 阅读全文
posted @ 2015-03-06 10:26 jerron 阅读(160) 评论(0) 推荐(0) 编辑

2015年3月4日

摘要: 在网上下载 ThoughtWorks.QRCode.dll以下为代码using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;usi... 阅读全文
posted @ 2015-03-04 10:31 jerron 阅读(850) 评论(0) 推荐(0) 编辑

2015年2月10日

摘要: 在vs中,新增一个Form 会对应生成三个文件from1.cs、form1.designer.cs,其中designer文件是放在第一个文件的下一级的,这样看起来文件的结构非常清楚。实际应用中,我们也经常会把一个类折分成几个文件来编写,以确保文件不会过长,但这些文件顺序排列起来,会使文件变得非常... 阅读全文
posted @ 2015-02-10 08:48 jerron 阅读(2013) 评论(3) 推荐(0) 编辑

导航