摘要:
※ 、遇到这样的问题第一想的就是怎么设置ajax 或者想怎么拆分字符串 今天在这里呢分享给大家一个简单的方法希望能帮助各位 1、在程序的web.config 中system.web 节点 里面插入 <httpRuntime maxRequestLength="999999999" maxQueryS 阅读全文
摘要:
/// /// 文件下载事件/// /// /// protected void Grid_OnCopyInsertClick(object sender, EventArgs e) { LinkButton LBut = sender as LinkButton; string ... 阅读全文
摘要:
一、什么是OAuth2.0官方网站:http://oauth.net/ http://oauth.net/2/权威定义:OAuth is An open protocol to allow secure authorization in a simple and standard method ... 阅读全文
2024年5月8日
摘要:
html { -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); filter: grayscale(100%) 阅读全文
2023年6月6日
摘要:
query.select('#myVideo'+item.LAY_TABLE_INDEX).boundingClientRect(data => { //console.log("节点离页面顶部的距离为:" + data.top); }).exec(); 阅读全文
2021年6月23日
摘要:
左进入:style="visibility: visible; animation-duration: 1500ms; animation-delay: 0ms; animation-name: fadeInLeft;" data-wow-delay="0ms" data-wow-duration= 阅读全文
2020年10月23日
摘要:
言简意赅不呼哨直接懂,可以封装的可以根据自己的需求封装一下 var date1="2020-10-23";var date2="2020-10-26";var a1 = Date.parse(new Date(date1));var a2 = Date.parse(new Date(date2)); 阅读全文
2020年7月10日
摘要:
1、每4000条插入一次 for (int i = 0; i < dt.Rows.Count; i++) { IsTBProductForStockInfo model = new IsTBProductForStockInfo(); model.SyncSkuCode = dt.Rows[i][" 阅读全文
2020年5月27日
摘要:
/// <summary> /// 下载图片 /// </summary> /// <param name="picUrl">图片Http地址</param> /// <param name="savePath">保存路径</param> /// <param name="timeOut">Requ 阅读全文
2019年5月24日
摘要:
1、第一步获取数据源 var rows = { //要插入的数据,这里要和table列名一致SkuCode: data.rows[i].SkuCode,BarCode: data.rows[i].BarCode,ProductName: data.rows[i].ProductName,prospe 阅读全文
2019年5月23日
摘要:
1、修改字段默认值 alter table 表名 drop constraint 约束名字 注解:删除表的字段的原有约束 alter table 表名 add constraint 约束名字 DEFAULT 默认值 for 字段名称 注解:添加一个表的字段的约束并指定默认值 2、修改字段名: alt 阅读全文
2019年4月2日
摘要:
查询当天: select * from info where DateDiff(dd,datetime,getdate())=0 查询24小时内: select * from info where DateDiff(hh,datetime,getDate())<=24 查询当天: select * 阅读全文
2019年3月25日
摘要:
第一步:引用 导入 System.EnterpriseServices及System.DirectoryServices 两个引用 程序引用: 第二步: /// siteId 是网站的编号,ip 指向的ip 一般默认 port 一般默认80 ,domain 自定义前缀 注意一下几点: 1、添加后,会 阅读全文