摘要: #region 数据上传 [HttpPost] public ActionResult UploadFile() { HttpFileCollectionBase files = Request.Files; HttpPostedFileBase file = files["file"]; stri 阅读全文
posted @ 2018-07-19 15:37 z_handsome 阅读(732) 评论(0) 推荐(0) 编辑
摘要: 一:C# 获取两个时间段之间的所有时间 public List<string> GetTimeList(string rq1, string rq2) { List<string> timeList = new List<string>(); //首先保证 rq1<=rq2 DateTime tim 阅读全文
posted @ 2018-07-19 14:26 z_handsome 阅读(3471) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 将DataRow赋值给model中同名属性 /// </summary> /// <typeparam name="T">泛型:model的类型</typeparam> /// <param name="objmodel">model实例</param> /// 阅读全文
posted @ 2018-07-19 10:41 z_handsome 阅读(241) 评论(0) 推荐(0) 编辑