会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
范海辛1990
博客园
首页
新随笔
联系
订阅
管理
2015年10月19日
C#可以自动在后台为属性创建字段
摘要: C#可以自动在后台为属性创建字段 public int userid { get; set; }和下面的写法是一样的 private int _userid; public int userid { get { return _userid; } ...
阅读全文
posted @ 2015-10-19 11:21 范海辛1990
阅读(428)
评论(0)
推荐(0)
2015年10月8日
委托的一个实例
摘要: public class DelegateTest { // 声明delegate对象 public delegate void CompareDelegate(int a, int b); // 欲传递的方法,它与CompareDelegate...
阅读全文
posted @ 2015-10-08 15:55 范海辛1990
阅读(122)
评论(0)
推荐(0)
2015年9月14日
encodeURIComponent()对js参数进行编码,防止错误值
摘要: encodeURIComponent()对js参数进行编码,防止错误值
阅读全文
posted @ 2015-09-14 18:31 范海辛1990
阅读(335)
评论(0)
推荐(0)
2015年9月7日
相同的sql 分页查询结果
摘要: select * from (select ROW_NUMBER() over(order by id desc) as rowsid,name from _Customer)as T where rowsid between 1 and 10;with datalist as(select ROW...
阅读全文
posted @ 2015-09-07 16:57 范海辛1990
阅读(150)
评论(0)
推荐(0)
sql 返回插入新纪录的id
摘要: StringBuilder strSQL = new StringBuilder();23 strSQL.Append("insert tb_SelCustomer(Name) ");24 strSQL.Append("OUTPUT ...
阅读全文
posted @ 2015-09-07 14:56 范海辛1990
阅读(237)
评论(0)
推荐(0)
复制表结构sql
摘要: select * into RRR_Goods20150907 from RRR_Goods where 1=2
阅读全文
posted @ 2015-09-07 11:17 范海辛1990
阅读(139)
评论(0)
推荐(0)
2015年7月22日
vs 快捷键
摘要: 本文将为大家列出在 Visual Studio 中常用的快捷键,正确熟练地使用快捷键,将大大提高你的编程工作效率。 项目相关的快捷键 Ctrl + Shift + B= 生成项目 Ctrl + Alt + L= 显示 Solution Explorer(解决方案资源管理器) Shift+A...
阅读全文
posted @ 2015-07-22 11:52 范海辛1990
阅读(136)
评论(0)
推荐(0)
datatable 赋值
摘要: DataTable DT = new DataTable("MyDT"); //实例一个空datatable DT.Columns.Add("Name", typeof(string)); //为datatable添加一些列 DT.Columns.Ad...
阅读全文
posted @ 2015-07-22 11:06 范海辛1990
阅读(962)
评论(0)
推荐(0)
2015年7月21日
vs2010 中用于帮助选定项的选项 快捷键
摘要: vs2010 中用于帮助选定项的选项 快捷键 是shift+alt+f10
阅读全文
posted @ 2015-07-21 16:55 范海辛1990
阅读(124)
评论(0)
推荐(0)
2015年4月22日
easyui中关闭所有的选项卡和单个关闭
摘要: function closeAll() { $(".tabs li").each(function(index, obj) { //获取所有可关闭的选项卡 var tab = $(".tabs-closable", this).text();...
阅读全文
posted @ 2015-04-22 11:05 范海辛1990
阅读(452)
评论(0)
推荐(0)
下一页
公告