摘要:
C#可以自动在后台为属性创建字段 public int userid { get; set; }和下面的写法是一样的 private int _userid; public int userid { get { return _userid; } ... 阅读全文
摘要:
public class DelegateTest { // 声明delegate对象 public delegate void CompareDelegate(int a, int b); // 欲传递的方法,它与CompareDelegate... 阅读全文
摘要:
encodeURIComponent()对js参数进行编码,防止错误值 阅读全文
摘要:
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... 阅读全文
摘要:
StringBuilder strSQL = new StringBuilder();23 strSQL.Append("insert tb_SelCustomer(Name) ");24 strSQL.Append("OUTPUT ... 阅读全文
摘要:
select * into RRR_Goods20150907 from RRR_Goods where 1=2 阅读全文
摘要:
本文将为大家列出在 Visual Studio 中常用的快捷键,正确熟练地使用快捷键,将大大提高你的编程工作效率。 项目相关的快捷键 Ctrl + Shift + B= 生成项目 Ctrl + Alt + L= 显示 Solution Explorer(解决方案资源管理器) Shift+A... 阅读全文
摘要:
DataTable DT = new DataTable("MyDT"); //实例一个空datatable DT.Columns.Add("Name", typeof(string)); //为datatable添加一些列 DT.Columns.Ad... 阅读全文
摘要:
vs2010 中用于帮助选定项的选项 快捷键 是shift+alt+f10 阅读全文
摘要:
function closeAll() { $(".tabs li").each(function(index, obj) { //获取所有可关闭的选项卡 var tab = $(".tabs-closable", this).text();... 阅读全文