WebEnh

.net7 mvc jquery bootstrap json 学习中 第一次学PHP,正在研究中。自学进行时... ... 我的博客 https://enhweb.github.io/ 不错的皮肤:darkgreentrip,iMetro_HD
  首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

08 2020 档案

摘要:在ASP.NET Core中使用EPPlus导入出Excel文件 这篇文章说明了如何使用EPPlus在ASP.NET Core中导入和导出.xls/.xlsx文件(Excel)。在考虑使用.NET处理excel时,我们总是寻找第三方库或组件。使用Open Office Xml格式(xlsx)读取和写 阅读全文

posted @ 2020-08-13 15:20 WebEnh 阅读(856) 评论(0) 推荐(0) 编辑

摘要:using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; us 阅读全文

posted @ 2020-08-13 15:19 WebEnh 阅读(908) 评论(0) 推荐(0) 编辑

摘要:一、List<T>/IEnumerable转换到DataTable/DataView 方法一: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 阅读全文

posted @ 2020-08-13 10:49 WebEnh 阅读(2683) 评论(0) 推荐(1) 编辑

摘要:序列化是将一个对象转换成字节流以达到将其长期保存在内存、数据库或文件中的处理过程。它的主要目的是保存对象的状态以便以后需要的时候使用。与其相反的过程叫做反序列化。 序列化一个对象 为了序列化一个对象,我们需要一个被序列化的对象,一个容纳被序列化了的对象的(字节)流和一个格式化器。进行序列化之前我们先 阅读全文

posted @ 2020-08-12 17:27 WebEnh 阅读(5189) 评论(1) 推荐(0) 编辑

摘要:最近在ASP.NET Core下写文章管理系统时,准备在分页显示文章内容时,使用Ajax。网上找了篇帖文,简单翻一下,仅供自己查阅。 原链接:https://dotnetthoughts.net/jquery-unobtrusive-ajax-helpers-in-aspnet-core/ 原标题: 阅读全文

posted @ 2020-08-04 10:17 WebEnh 阅读(375) 评论(0) 推荐(0) 编辑

摘要:通过动态加载表单内容,要求检测加载之后有没有变更过,可以通过defaultValue或者defaultSelected、defaultChecked属性来完成 首先,加载完成后设置默认值为当前状态的值: //设置当前值为表单默认值 function setDefault(element) { if 阅读全文

posted @ 2020-08-03 16:22 WebEnh 阅读(382) 评论(0) 推荐(0) 编辑