2023年11月14日
摘要: https://it.sohu.com/a/593254296_121124363 阅读全文
posted @ 2023-11-14 19:58 咖啡加点盐 阅读(66) 评论(0) 推荐(0)
  2023年11月3日
摘要: https://blog.csdn.net/weixin_52360147/article/details/124367375 https://blog.csdn.net/qq_48492162/article/details/131977507?utm_medium=distribute.pc_r 阅读全文
posted @ 2023-11-03 14:54 咖啡加点盐 阅读(14) 评论(0) 推荐(0)
  2023年10月10日
摘要: //父窗体 Messenger.Default.Register<string>("AddClose", e => { this.Close(); }); //子窗体 Messenger.Default.Send("AddClose"); 阅读全文
posted @ 2023-10-10 15:13 咖啡加点盐 阅读(34) 评论(0) 推荐(0)
  2023年7月13日
摘要: Expression<Func<RecipeInfo, bool>> expression = t => true; expression = expression.And(p => p.IsEfjective==0); switch (type) { case 0: expression = ex 阅读全文
posted @ 2023-07-13 14:00 咖啡加点盐 阅读(267) 评论(0) 推荐(0)
  2017年9月22日
摘要: http://www.cnblogs.com/yinqixin/p/5056307.html 阅读全文
posted @ 2017-09-22 16:17 咖啡加点盐 阅读(99) 评论(0) 推荐(0)
  2016年12月5日
摘要: /// <summary> /// Http上传文件类 - HttpWebRequest封装 /// </summary> public class HttpUploadClient { /// <summary> /// 上传执行 方法 /// </summary> /// <param name 阅读全文
posted @ 2016-12-05 16:04 咖啡加点盐 阅读(304) 评论(0) 推荐(0)
  2016年7月25日
摘要: protected void Page_Load(object sender, EventArgs e) { if(!IsPostBack){ CreateCheckCodeImage(GenerateCheckCode());//调用下面两个方法; } } /// <summary> /// 生成 阅读全文
posted @ 2016-07-25 11:19 咖啡加点盐 阅读(1727) 评论(0) 推荐(0)
  2016年7月7日
摘要: create trigger tri_Line on Linefor insertasbeginif (select count(1) from Line)=0beginprint '未插入数据'endelsebegininsert into LineSubset(LineName)select L 阅读全文
posted @ 2016-07-07 09:38 咖啡加点盐 阅读(670) 评论(0) 推荐(0)
摘要: Response.Write 之前加上下面两句话 HttpContext.Current.Response.ContentType = "text/html;charset=utf-8"; HttpContext.Current.Response.ContentEncoding = System.T 阅读全文
posted @ 2016-07-07 09:01 咖啡加点盐 阅读(2726) 评论(0) 推荐(0)
  2016年7月6日
摘要: <webServices> <protocols> <add name="HttpGet" /> <add name="HttpPost" /> <add name="HttpPostLocalhost" /> <add name="Documentation" /> </protocols> </ 阅读全文
posted @ 2016-07-06 16:37 咖啡加点盐 阅读(318) 评论(0) 推荐(0)