摘要:
#region 数据上传 [HttpPost] public ActionResult UploadFile() { HttpFileCollectionBase files = Request.Files; HttpPostedFileBase file = files["file"]; stri 阅读全文
摘要:
一:C# 获取两个时间段之间的所有时间 public List<string> GetTimeList(string rq1, string rq2) { List<string> timeList = new List<string>(); //首先保证 rq1<=rq2 DateTime tim 阅读全文
摘要:
/// <summary> /// 将DataRow赋值给model中同名属性 /// </summary> /// <typeparam name="T">泛型:model的类型</typeparam> /// <param name="objmodel">model实例</param> /// 阅读全文