上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 48 下一页
摘要: var postData = $("#form1").GetControls(); delete postData.undefined; delete postData.__RequestVerificationToken; 阅读全文
posted @ 2020-10-29 11:12 James·wang 阅读(579) 评论(0) 推荐(0)
摘要: Windows2012设置文件夹权限报错: failed to enumerate objects in the container. 通过cmd命令进行设置 找到系统中的cmd.exe文件,或者在桌面上新建一个批处理文件(打文本文档输入cmd保存,将文件本文件后辍txt改为bat),右击用管理员权 阅读全文
posted @ 2020-10-16 19:33 James·wang 阅读(418) 评论(0) 推荐(0)
摘要: :style="{backgroundImage: 'url(/Content/img/filetype/'+m.FileExtensions+'.png)'}" 阅读全文
posted @ 2020-09-22 09:06 James·wang 阅读(1170) 评论(0) 推荐(0)
摘要: C#有小数位数直接进位为整数number = 2.3445; Math.Ceiling(number); //运行完成后number的值为3 //如: 2.11 3.2145 6.125 7.111 //运行完成后的值为: 3 4 7 8 JavaScript Math有小数位数取整方法 舍掉小数取 阅读全文
posted @ 2020-09-09 21:52 James·wang 阅读(1266) 评论(0) 推荐(0)
摘要: 在执行GroupBy分组查询前先过虑数据并添加.ToList(),如此可以提高很多 阅读全文
posted @ 2020-09-06 07:19 James·wang 阅读(858) 评论(0) 推荐(0)
摘要: 配置项类型描述默认值 align string 定义单元格中内容对齐方式,可用值: left, center, right. left cellattr function 这个方法在创建单元格内容的时候给单元格添加附加到属性。所有可用的单元格属性或者style属性中可用的值都可以使用,这个方法需要返 阅读全文
posted @ 2020-09-03 12:53 James·wang 阅读(899) 评论(0) 推荐(0)
摘要: { label: '费用合计', name: 'TotalAmount', align: 'center', formatter: "currency", formatoptions: { thousandsSeparator: ",", decimalSeparator: ".", prefix: 阅读全文
posted @ 2020-09-03 11:12 James·wang 阅读(1307) 评论(0) 推荐(0)
摘要: {name:'LastLoginTime',index:'LastLoginTime',label:"最后登录时间", editable:false,formatter:"date",formatoptions: {srcformat:'Y-m-d H:i:s',newformat:'Y-m-d H 阅读全文
posted @ 2020-09-03 11:11 James·wang 阅读(634) 评论(0) 推荐(0)
摘要: 两个地方添加如下数据maxQueryStringLength: <system.web> <httpRuntime maxRequestLength="204800" maxQueryStringLength="204800" </system.web> <system.webServer> <se 阅读全文
posted @ 2020-08-19 19:57 James·wang 阅读(2666) 评论(2) 推荐(1)
摘要: 1、设置radio为未选中/选中状态: $("#id").prop({ checked: false }); $("#id").prop({ checked: true}); 2、是否选中 $("input[type='checkbox']").is(':checked') 返回true或false 阅读全文
posted @ 2020-08-19 17:55 James·wang 阅读(307) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 48 下一页