Bootstrap 3 与 4 差别很大,目录文件结构、所引入的内容也不同,这里说说一下 Bootstrap 引入的文件、网页模板和兼容性问题。本网站刚刚搭建好,正好发一下文章原来测试网站。 Bootstrap 4 目录结构如下 bootstrap/ ├── css/ │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ ├── bootstrap-grid.css │ ├─…

2019年12月9日 3条评论 5517点热度 0人点赞 痴者工良 阅读全文

First, I would like to clarify that the video tutorial and source code are not my original works. I have split the project and written some explanations. The video tutorial can be found at  https://study.163.com/course/courseMain.htm?courseId=1005955…

2019年12月9日 0条评论 1440点热度 0人点赞 痴者工良 阅读全文

首先说明,视频教程、源码并非本人原创 本人将项目分割开,并写了一些说明。 该视频教程 地址  https://study.163.com/course/courseMain.htm?courseId=1005955006 原作者 笔者正在学 ASP.NET Core ,发现这位作者的视频教程非常好,按教程做了一遍,所以专门写一篇文章进行介绍,并对项目进行分析。 项目源码下载地址  链接:https://pan.baidu.com/s/11sg-6IUKad35Q2RKl-DKXg 提取…

2019年12月9日 0条评论 4470点热度 0人点赞 痴者工良 阅读全文

C# provides two types of type conversion: explicit conversion and implicit conversion. Explicit conversion: This type of conversion may cause exceptions, precision loss, and other issues. It requires intervention for the conversion operation. Implicit conversi…

2019年12月9日 1条评论 1864点热度 0人点赞 痴者工良 阅读全文

C# 的类型转换有 显式转型 和 隐式转型 两种方式。 显式转型:有可能引发异常、精确度丢失及其他问题的转换方式。需要使用手段进行转换操作。 隐式转型:不会改变原有数据精确度、引发异常,不会发生任何问题的转换方式。由系统自动转换。  不同类型的数据进行操作(加减乘除赋值等等),是需要进行 类型转换 后,才能继续操作。所以需要“类型转换”。   隐式转型 隐式转型容易理解,当两种或多种数据类型进行某种操作时,不需要干预,系统会自动进行隐式转换。 如 int i =…

2019年12月9日 1条评论 4084点热度 0人点赞 痴者工良 阅读全文

Declaration of Multidimensional Arrays When declaring, the length of the array must be specified, in the format of type [length, length, length, ... ] int [,] test1 = new int [3,3]; Alternatively, you can assign values during declaration, allowing the system t…

2019年12月9日 1条评论 1846点热度 0人点赞 痴者工良 阅读全文

多维数组的声明 在声明时,必须指定数组的长度,格式为 type [lenght ,lenght ,lengh, ... ] int [,] test1 = new int [3,3];  或声明时即赋值,由系统推断长度 int [,] test1 = { {1,2,3}, {1,2,3}, {1,2,3}, }; 交错数组的声明 声明时,至少需要指定第一维的长度,格式为 type [ ] [ ] [ ] ... int [][] test1 = new int[5][];  int [][] t[......]继续…

2019年12月9日 1条评论 3907点热度 0人点赞 痴者工良 阅读全文

The general usage format is int pagesize = page size (size of each page)int pageindex = the page number (this variable generally increments with each loop) Usage.Skip(pagesize*pageindex).Take(pagesize) .Skip()     ignores numbers, indicating where to…

2019年12月9日 0条评论 1378点热度 0人点赞 痴者工良 阅读全文

一般使用格式为 int pagesize = 分页大小(每一页大小)int pageindex = 第几页(一般这个变量是随循环递增的) 使用方法.Skip(pagesize*pageindex).Take(pagesize) .Skip()   忽略数,表示从哪里开始分页 .Take()  表示每一页截取多少个记录 注意 ,数列是从0开始的,也就是说,第一个是 0,第二个是 1 ... ... 以上方法结合,截取的只是一页,需要在循环中使用,不断截取下一页 例如 {1,2,3,4,5…

2019年12月9日 0条评论 4705点热度 0人点赞 痴者工良 阅读全文

Xunsearch is an open-source, free, high-performance, multifunctional, and easy-to-use professional full-text search technology solution. It is currently a well-known open-source search engine. After installing Xunsearch, it is necessary to install the PHP SDK …

2019年12月9日 0条评论 2459点热度 0人点赞 痴者工良 阅读全文

Xunsearch 是开源免费、高性能、多功能,简单易用的专业全文检索技术方案,是目前非常知名的开源搜索引擎。 安装完Xunserach,还需要安装PHP SDK,才能进行搜索。 本人已在腾讯云实验室建立了实验,可以直接上机操作。当然,你也可以用自己的服务器进行测试。 实验室地址    https://cloud.tencent.com/developer/labs/lab/10424 软件环境: Centos 7 目录 1.安装 GCC 依赖 2.安装xunsearch 3.安装环境…

2019年12月9日 0条评论 5321点热度 0人点赞 痴者工良 阅读全文

Using app.UseFileServer In public void Configure(){} modify or add 1 app.UseFileServer(new FileServerOptions() 2 { 3 FileProvider =new PhysicalFileProvider 4 ( 5 Path.Combine(Directory.GetCurrentDirectory(),@"StaticF[......]继续阅读

2019年12月9日 2条评论 1236点热度 1人点赞 痴者工良 阅读全文

使用app.UseFileServer 在 public void Configure(){}中,修改或添加 1 app.UseFileServer(new FileServerOptions() 2 { 3 FileProvider =new PhysicalFileProvider 4 ( 5 Path.Combine(Directory.GetCurrentDirectory(),@"StaticFile/Image")), //实际目录地址6[......]继续阅读

2019年12月9日 2条评论 4599点热度 1人点赞 痴者工良 阅读全文

I tested it on my computer. Let’s take a look at my computer's configuration. I'm running Windows 10 with a mechanical hard drive. Here, I want to talk about optimizing the computer for faster boot times. Of course, this varies with computer configuration; my …

2019年12月9日 0条评论 1192点热度 0人点赞 痴者工良 阅读全文

我是用我的电脑测试的。看看我电脑的配置 我的是windows10,机械硬盘。 在这里要说的是给电脑优化,让其开机更快。当然,因电脑配置而异,我的最快是11秒。标题可能有点夸张了,结果因电脑配置而异,高手路过,小白往下看。 晒一下我的电脑装了啥。我是计算机系学生,所以电脑的软件比较多,装了好多系统插件。 看看我的开机时间 以前都是11,12秒的 开学后,装了许多东东。时间如下图 时间在16/17秒徘徊。 好了,现在我们说正题。 要优化,就要用软件。我用的是360卫士,其他的软件功能差不多也是可以用的。 首先要弄开机启…

2019年12月9日 0条评论 4195点热度 0人点赞 痴者工良 阅读全文

Why is there the annoying Tencent PC Manager? How to get rid of it Tencent PC Manager appears on startup Unable to uninstall Tencent PC Manager   One day, during some spare time, I upgraded some common software, including the new version of QQ for PC. Aft…

2019年12月9日 1条评论 1674点热度 1人点赞 痴者工良 阅读全文

为什么会有可恶的腾讯电脑管家 怎么干掉它 电脑开机出现腾讯电脑管家 无法卸载腾讯电脑管家   某天,趁空闲,升级了一些常用软件,其中就升了新版电脑qq,晚上玩完电脑后关机睡觉,第二天早上开机。出现了图一: ①图一   我擦,我有下载过?我有安装过?我的笔记本是windows10,如果在关机前,有软件不能正常运行、偷偷运行的或在关机前关闭过,需要的权限又有点高的,在开机时就会有弹框提示。如图一。可是我没有下载过,更没有安装过。现在不纠结这个问题,先干掉它再说。 图一,点那个展开详细信息,看图二,就…

2019年12月9日 1条评论 6386点热度 1人点赞 痴者工良 阅读全文

Differences in Server Environments *Data and content sourced from the internet   1. Software Introduction (Apache, Lighttpd, Nginx) 1. Lighttpd Lighttpd is characterized by very low memory usage, low CPU consumption, good performance, and a rich set of mo…

2019年12月9日 0条评论 1260点热度 0人点赞 痴者工良 阅读全文

服务器环境的区别 *数据和内容来自互联网   一.软件介绍(apache  lighttpd  nginx) 1. lighttpd Lighttpd是一个具有非常低的内存开销,cpu占用率低,效能好,以及丰富的模块等特点。lighttpd是众多OpenSource轻量级的web server中较为优秀的一个。支持FastCGI, CGI, Auth, 输出压缩(output compress), URL重写, Alias等重要功能。 Lighttpd使用fastcgi方式运行php,它会使用很少的PHP进程响应很…

2019年12月9日 0条评论 4290点热度 0人点赞 痴者工良 阅读全文

Analyze business needs for enterprises, create high-quality public accounts, establish management systems, design mini-programs, store mini-programs, and micro-malls, plan marketing activities, promote online and offline, data visualization, and data statistic…

2019年12月9日 0条评论 1412点热度 0人点赞 痴者工良 阅读全文
1495051525355