摘要: <style> * { margin: 0; padding: 0; } div { /* 宽高改变的是内容大小 */ width: 200px; height: 200px; } /* w3c标准盒子:盒子的总大小=内容+内边距+边框+外边距 */ /* 只要改变 内容,内边距,外边距,边框,盒子 阅读全文
posted @ 2023-04-08 10:05 沈先生爱猫咪 阅读(22) 评论(0) 推荐(0) 编辑
摘要: <style> p::before { content: "当不想添加元素又想在其前面插入文字时使用"; } p::after { content: "当不想添加元素又想在其后面插入文字时使用"; } /* 当鼠标选择时发生 */ p::selection { color: red; } /* 选择 阅读全文
posted @ 2023-04-08 09:16 沈先生爱猫咪 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 伪类选择器 选择第几个元素 <style> /* 类num后代li的第1个 */ .num li:first-child { color: red; } /* 类num后代li的最后一个 */ .num li:last-child { color: red; } /* 类num后代li的第3个 */ 阅读全文
posted @ 2023-04-08 08:58 沈先生爱猫咪 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 基础选择器 前端页面结构如下 <h1>h1:标签选择器对选定的所有的标签都生效</h1> <p>p:标签选择器对选定的所有的标签都生效</p> <div class="green">div:类选择器测试</div> <div id="myid">id选择器测试,id是唯一的</div> 效果展示如下 阅读全文
posted @ 2023-04-08 08:27 沈先生爱猫咪 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 使用Asp.Net Core 进行文件的上传与下载 控制器代码如下 using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using System; u 阅读全文
posted @ 2023-04-07 10:29 沈先生爱猫咪 阅读(71) 评论(0) 推荐(1) 编辑
摘要: 觉得不错,转载下 asp.net core 使用jwt 阅读全文
posted @ 2023-04-03 11:21 沈先生爱猫咪 阅读(7) 评论(0) 推荐(0) 编辑
摘要: [Route("api/uploadFile")] public ReturnMessage PostFile(string saveDirName) { HttpRequest httpRequest = HttpContext.Current.Request; string rootPath = 阅读全文
posted @ 2023-03-30 15:54 沈先生爱猫咪 阅读(167) 评论(0) 推荐(0) 编辑
摘要: [System.Web.Http.Route("api/download")] public HttpResponseMessage GetFile(string filePath) { try { filePath = "\\" + filePath; var FilePath = System. 阅读全文
posted @ 2023-03-27 15:15 沈先生爱猫咪 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 背景 在工作中需要对比数据,然后输出一份world文档的对比报告。这需要用C#来读写word文件。 用到的工具 NPOI NPOI 地址:NPOI NPOI版本:2.6.0 个人项目的运行时版本:.NET Core 3.1 解决思路: 既然是要输出一份报告,那么报告的格式是固定的,只需要将报告需要改 阅读全文
posted @ 2023-03-22 17:01 沈先生爱猫咪 阅读(1366) 评论(2) 推荐(1) 编辑
摘要: this.panel1.BackgroundImage = Image.FromFile(@"D:\TestDemo\WindowsFormsApp2\WindowsFormsApp2\黑箭头.png"); this.panel1.BackgroundImageLayout = ImageLayou 阅读全文
posted @ 2022-11-30 18:31 沈先生爱猫咪 阅读(64) 评论(0) 推荐(0) 编辑