摘要: #region 导出代码 /// <summary> /// 导出代码 /// </summary> public void Export() { NPOI.HSSF.UserModel.HSSFWorkbook workbook = new NPOI.HSSF.UserModel.HSSFWork 阅读全文
posted @ 2018-01-17 11:44 .net&new 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 步骤首先我们需要下载npm,因为我已经提前安装了node.js,安装包里面集成了npm,然后我们就可以利用npm命令从获取淘宝镜像的cnpm了。1.打开命令行窗口,输入npm install -g cnpm --registry=https://registry.npm.taobao.org获取到c 阅读全文
posted @ 2023-10-21 07:25 .net&new 阅读(1336) 评论(0) 推荐(0) 编辑
摘要: vue代码: login.vue <template> <div class="login-wrap"> <el-button type="primary" style="width:100%;" @click="doSubmit()">提交</el-button> </div> </templat 阅读全文
posted @ 2023-10-18 21:36 .net&new 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 解决方案1、打开命令行工具,并执行以下命令来设置npm的registry为淘宝镜像源: npm config set registry https://registry.npm.taobao.org/12、验证镜像源是否设置成功,执行以下命令: npm config get registry1确保输 阅读全文
posted @ 2023-10-14 22:57 .net&new 阅读(957) 评论(0) 推荐(0) 编辑
摘要: private void button3_Click(object sender, EventArgs e) { string sourcePath =Environment.CurrentDirectory + "/temple/" + "2.doc"; new Aspose.Words.Lice 阅读全文
posted @ 2023-09-28 22:29 .net&new 阅读(105) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>在一个数组中删除另一个数组存在的值</title> <style type="text/css"> html,body{width:100%;height:10 阅读全文
posted @ 2023-08-15 19:49 .net&new 阅读(13) 评论(0) 推荐(0) 编辑
摘要: FormData的主要用途 将form表单元素的name与value进行组合,实现表单数据的序列化,从而减少表单元素的拼接,提高工作效率。 异步上传文件 注:FormData 对象的字段类型可以是 Blob, File, 或者 string,如果它的字段类型不是Blob也不是File,则会被转换成字 阅读全文
posted @ 2023-08-13 09:10 .net&new 阅读(277) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 有水印 /// </summary> /// <param name="pdfUrl">pdf文件路径</param> /// <param name="imagePath">输出图片路径</param> public static void SpirePdfTo 阅读全文
posted @ 2023-08-12 12:41 .net&new 阅读(122) 评论(0) 推荐(1) 编辑
摘要: string mp4URL = Server.MapPath("~/Upload/") + "33.mp4"; string OutURL = Server.MapPath("~/Upload/") + DateTime.Now.ToString("yyyyMMddHHmmssfff") + ".p 阅读全文
posted @ 2023-08-11 21:19 .net&new 阅读(164) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;using Microsoft.WindowsAPICodePack.Shell;using S 阅读全文
posted @ 2023-08-11 20:46 .net&new 阅读(55) 评论(0) 推荐(0) 编辑
摘要: JavaScript部分: function checkAll(obj){ $("#box input[type='checkbox']").prop('checked', $(obj).prop('checked'));}html部分: <div id="box"> <input type="ch 阅读全文
posted @ 2023-07-27 21:34 .net&new 阅读(65) 评论(0) 推荐(0) 编辑