上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 36 下一页
摘要: 这个功能并不是很好实现的功能,js能操控按键本身是件非常危险的事。但是有些情况下需要实现这个操作。 方案一: javascript 自动触发 按键盘操作 trigger ————————————————版权声明:本文为CSDN博主「fareast_mzh」的原创文章,遵循 CC 4.0 BY-SA 阅读全文
posted @ 2021-05-24 14:29 ꧁执笔小白꧂ 阅读(1866) 评论(1) 推荐(0)
摘要: https://blog.csdn.net/w18846439057/article/details/84573073 阅读全文
posted @ 2021-05-21 15:44 ꧁执笔小白꧂ 阅读(261) 评论(0) 推荐(0)
摘要: 一个Web项目,父页面给子页面传递参数,代码如下: 1 <!DOCTYPE html> 2 <html lang="en-us"> 3 <head> 4 <meta charset="utf-8"> 5 <meta http-equiv="Content-Type" content="text/ht 阅读全文
posted @ 2021-05-21 15:32 ꧁执笔小白꧂ 阅读(480) 评论(0) 推荐(0)
摘要: 一,下载与安装 下载安装简单使用介绍:https://www.onlinedown.net/soft/577763.htm 备用下载安装链接:https://pan.baidu.com/s/1QUjROvMl0imrA3TF4fviRg (提取码:2q5j) 二,使用 1.生成的文件介绍: .sws 阅读全文
posted @ 2021-05-19 13:53 ꧁执笔小白꧂ 阅读(425) 评论(0) 推荐(0)
摘要: 一,常见分辨率(电脑、平板、手机、TV) 1.电脑: 主流2k 2560×1440 主流 1920*1080 1680*1050 1440*900 上代笔记本主流1366*768 1024x768 2.平板: 主流1920*1080 主流1920*1200(2000 x 1200) 2560×160 阅读全文
posted @ 2021-05-06 16:48 ꧁执笔小白꧂ 阅读(332) 评论(0) 推荐(0)
摘要: 1.遇到的问题: Ubuntu18部署ASP.NET程序遇到验证码不显示,项目引用了System.Drawing库。 2.可能的原因: 是由于Ubuntu缺少GUI库,需要安装libgdiplus包。 3.解决过程: 安装libgdiplus包,见Ubuntu Server(Ubuntu 14.04 阅读全文
posted @ 2021-04-19 14:56 ꧁执笔小白꧂ 阅读(189) 评论(0) 推荐(0)
摘要: 需要安装GCC: 1、安装: sudo apt-get build-dep gcc 或者: sudo apt-get install build-essential 2、查看版本: gcc --version 阅读全文
posted @ 2021-04-19 12:16 ꧁执笔小白꧂ 阅读(3614) 评论(0) 推荐(0)
摘要: 1、资料地址:https://dotnet.microsoft.com/download/dotnet/thank-you/sdk-2.2.110-linux-x64-binaries 2、下面是一个例子(core-sdk2.2.110): ①下载: https://download.visuals 阅读全文
posted @ 2021-04-16 13:31 ꧁执笔小白꧂ 阅读(395) 评论(0) 推荐(0)
摘要: 原环境: .NET Core SDK(反映任何 global.json): Version: 2.2.110 Commit: 4797dabd3c 运行时环境: OS Name: Windows OS Version: 6.1.7601 OS Platform: Windows RID: win7- 阅读全文
posted @ 2021-04-15 12:36 ꧁执笔小白꧂ 阅读(588) 评论(0) 推荐(0)
摘要: 哎,先不记录了; Ubuntu18+mono+Nginx部署ASP.NET项目 Ubuntu18+.netcore+Nginx+Supervisor部署ASP.NET项目 补充: linux自带的守护进程-systemd(系统)与systemctl(命令) 阅读全文
posted @ 2021-04-14 16:47 ꧁执笔小白꧂ 阅读(173) 评论(0) 推荐(0)
摘要: 默认安装Ubuntu都是不允许以root用户进行登录的,想要以root用户进行登录需要进行一些操作,主要是以下几个步骤: 一、Ubuntu 版启用root用户登录 ● 第一步 以普通用户登录系统,创建root用户的密码 ,然后输入你要设置的密码,这样就完成了设置root用户密码的步骤``` ● 第二 阅读全文
posted @ 2021-04-14 14:55 ꧁执笔小白꧂ 阅读(237) 评论(0) 推荐(0)
摘要: 参照微软SQL Server on Linux 2017 前提准备: sudo apt update && sudo apt upgrade 一,安装mssql-server包 1.导入公共存储库 GPG 密钥: wget -qO- https://packages.microsoft.com/ke 阅读全文
posted @ 2021-04-14 11:31 ꧁执笔小白꧂ 阅读(1987) 评论(4) 推荐(1)
摘要: <input type="datetime-local" name="UsageExpirationTime" class="layui-input UsageExpirationTime" placeholder="请输入使用到期时间" lay-verify="usageExpirationTim 阅读全文
posted @ 2021-04-13 09:17 ꧁执笔小白꧂ 阅读(1126) 评论(0) 推荐(1)
摘要: core: core工程html->cshtml html关联的文件 wwwroot文件夹下 css文件夹 css文件夹 js文件夹 js文件夹 fonts文件夹 fonts文件夹 images文件夹 images文件夹 后缀:.html->.cshtml html文件头部添加:@{ Layout 阅读全文
posted @ 2021-04-09 14:19 ꧁执笔小白꧂ 阅读(444) 评论(0) 推荐(0)
摘要: 正则表达式取反: ^((?!你的正则表达式).)* js:/正则表达式/ C#:"正则表达式" 阅读全文
posted @ 2021-04-07 10:08 ꧁执笔小白꧂ 阅读(1612) 评论(0) 推荐(0)
摘要: 1 class DesHelper 2 { 3 #region DES 加密 4 5 /// <summary> 6 /// 加密(Hex) 7 /// Add by 成长的小猪(Jason.Song) on 2017/07/26 8 /// </summary> 9 /// <param name 阅读全文
posted @ 2021-04-06 10:42 ꧁执笔小白꧂ 阅读(216) 评论(0) 推荐(0)
摘要: 1、常见三种加密(MD5、非对称加密,对称加密) 2、C# -MD5算法 16 32 大小写 3、C# -SHA算法 4、C# -DES加解密帮助类(对称加密) 5、C# -AES加解密帮助类(对称加密) 6、C#之AES256位加密解密(现在失效了) 7、C# -RSA加密解密帮助类(非对称加密) 阅读全文
posted @ 2021-04-06 10:41 ꧁执笔小白꧂ 阅读(111) 评论(0) 推荐(0)
摘要: 1 /** 2 *┌──────────────────────────────────────────────────────────────┐ 3 *│ 描 述:AES加解密帮助类 4 *│ 作 者:yilezhu 5 *│ 版 本:1.0 6 *│ 创建时间:2019/1/1 21:11:02 阅读全文
posted @ 2021-04-06 10:37 ꧁执笔小白꧂ 阅读(216) 评论(0) 推荐(0)
摘要: Cookie: Startup文件 services.AddAuthentication(CookieAuthenticationDefaults.AuthenticationScheme).AddCookie(options => { options.LoginPath = "/Login/Ind 阅读全文
posted @ 2021-03-30 19:38 ꧁执笔小白꧂ 阅读(226) 评论(0) 推荐(0)
摘要: 一、序言 Identity:身份组件库;使用管理用户、密码、配置文件数据、角色、声明、令牌、电子邮件确认等。 二、常用成员(WebAPI;无UI) 1、部分方法(知道即可;我的框架中没有用这些) 全部方法见:Microsoft.AspNetCore.Identity 命名空间 //Microsoft 阅读全文
posted @ 2021-03-30 17:10 ꧁执笔小白꧂ 阅读(352) 评论(0) 推荐(0)
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 36 下一页