07 2018 档案
摘要:解决方案一:设置默认首页 在 Web.config 文件中,加上红色字体间的内容 ...
阅读全文
摘要:create proc pro_GetProTrans @GoodsId int, @Number int, @StockPrice money, @SupplierId int, @EmpId int, @StockUnit varchar(50), @StockDate datetime, @TotalMoney money , @ActMoney money , @baseId int, ...
阅读全文
摘要:/// /// 订单助手 /// public class OrderHelper { /// /// 防止创建类的实例 /// private OrderHelper() { } private static readonly object Locker = new ob...
阅读全文
摘要:jQuery中each类似于javascript的for循环 但不同于for循环的是在each里面不能使用break结束循环,也不能使用continue来结束本次循环,想要实现类似的功能就只能用return,break 用return falsecontinue 用return true
阅读全文
摘要:using System.IO; /// /// WebApi返回图片 /// public HttpResponseMessage GetQrCode() { var imgPath = @"D:\ITdosCom\Images\itdos.jpg"; //从图片中读取byte var imgByte = File.ReadAllBy...
阅读全文