随笔分类 - C#
摘要:在jqgrid.css里找到 .ui-jqgrid .cbox{margin-left: -1px;position: initial;vertical-align: text-bottom;}.ui-jqgrid .checkbox{margin-left: 8px;position:initia
阅读全文
摘要:为了实现cache存储验证用户身份信息,减少通过数据库验证的次数,需要在wcf各个服务之间建立共享数据区。 namespace WcfService1 { public static class Class1 { public static string appName = ""; } } name
阅读全文
摘要:虽然比较简单,但很实用,在C# MVC下开发,请首先将图标名称保存到数据库中,图标窗口如下。
阅读全文
摘要:List<int> unitIDList=new List<int>(); //此处添加int元素 var query = DB.ElecConsumers.Where(c => unitIDList.Contains(c.ParentUnitID)); //EF方式 var query1 = (f
阅读全文
摘要:在EF Add时设置ID为-1.自关联表要主动赋值
阅读全文
摘要:有个简单的方法: 在datagrid的删除按扭 datagrid的属性生成器-》列-》添加按扭列-》删除 在数据字段中加上: 删除 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 如果按钮类型是LinkButton,则用ItemCreated事件: protected void MyDataGrid_ItemCreated(obj...
阅读全文