上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: 首先:添加GET包: Microsoft.Office.Interop.Excel; 其次:添加命名空间: 1、using Netover.Foundation.Common; 2、using Netover.Foundation.Web; 3、using NPOI.HSSF.UserModel; 阅读全文
posted @ 2021-07-28 14:24 猴猴手记 阅读(258) 评论(0) 推荐(0) 编辑
摘要: public class Person { public string Name { get; set; } public string Sex { get; set; } public int Age { get; set; } } List list = new List() { new Per 阅读全文
posted @ 2021-07-12 16:35 猴猴手记 阅读(504) 评论(0) 推荐(0) 编辑
摘要: 后台传值前台的方式: 第 一种:后台:ViewData["shan"] 前台: @ ViewData["shan"] 第 二种:后台:ViewBag.shan 前台:@ ViewBag.shan 第三种:后台:1、List<UserTable>2、return View(list);前台:1、抬头定 阅读全文
posted @ 2021-06-29 16:08 猴猴手记 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 创建ef链接数据库的方式后,会出现一个继承: DbContext的类; 在需要调用数据库的地方new一个Model1类,然后用莱姆达表达式查询或者修改,删除!!!! 莱姆达表达式: 一、查询: 1、单行:var userLogin = db.T_UserLogin.Where(d => d.Logi 阅读全文
posted @ 2021-06-29 15:25 猴猴手记 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 一、设置启动时默认的html页面:把控制器下方法设置加载页面首次进入的方法,方法里面添加进入的页面:Redirect(Url.Content("../index.html")); 1、(第一种)startup.cs类中Configure方法中,把没用的都删掉只保留if中等于true的内容 再new一 阅读全文
posted @ 2021-06-29 11:27 猴猴手记 阅读(497) 评论(0) 推荐(0) 编辑
摘要: 二、 首先控制器的方法中写: private readonly ILogger<fluueController> _logger; public fluueController(ILogger<fluueController> logger){ _logger =logger; } 引入命名空间:u 阅读全文
posted @ 2021-06-29 11:18 猴猴手记 阅读(461) 评论(0) 推荐(0) 编辑
摘要: 一般查询 db.User.Select(u => u); // 不带条件查询 db.User.Where(u => true); //不带条件查询 db.User.Where(u => u.username == "wjl" || u.username == "hyf"); // 带条件查询 || 阅读全文
posted @ 2021-06-29 11:00 猴猴手记 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 一、Linq语句的应用: var queryAllCustomers = from cust in customers group cust by cust.City into custGroup where cust.City == "London" && cust.Name.Contains(" 阅读全文
posted @ 2021-06-08 11:50 猴猴手记 阅读(598) 评论(0) 推荐(0) 编辑
摘要: <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> <meta charset="utf-8" /> <style> * { padding:0px; m 阅读全文
posted @ 2021-05-28 15:43 猴猴手记 阅读(148) 评论(0) 推荐(0) 编辑
摘要: <html> <head> <meta charset="utf-8" /> <title></title> <style> .wrap { width: 100px; height: 100px; margin: 150px; position: relative; } .cube { width 阅读全文
posted @ 2021-05-28 15:42 猴猴手记 阅读(411) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页
浏览器标题切换
浏览器标题切换end