background picture of the home page

Hi,Friend

以技术为主流的博客系统

如何在IIS中添加ISAPI和CGI限制功能

假设我们在安装系统的过程中不知道要在IIS中设置ISAPI和CGI限制功能,安装结束后我们在浏览器中输入网址的时候就会出现以下错误: 出现HTTP 错误 404.2 - Not Found 由于 Web 服务器上的“ISAPI 和 CGI 限制”列表设置,无法提供您请求的页面 第一步:在IIS中添加

thumbnail of the cover of the post

win11安装IIS步骤

1、使用快捷键win+r输入control打开控制面板,然后点击程序,选择启用或关闭Windows功能,勾选Internet Information Services默认安装IIS。 2、通过 控制面板— 程序— 启用或关闭Windows功能— 选择Internet Information Serv

thumbnail of the cover of the post

VS2017-打包部署IIS

Visual Studio2017 的项目发布 1.首先打开自己的本地项目,重新生成解决方案必须无报错 2.然后右键选中的项目,点击发布 3.第一次发布需要配置发布的相关信息,如果第N次发布可直接跳过,配置信息如下 3.1<

thumbnail of the cover of the post

栈与队列

栈: java.util.Stack:使用动态数组实现。 java.util.Deque:可以使用链表或动态数组实现。 队列: java.util.LinkedList:使用链表实现。 java.util.ArrayDeque:使用动态数组实现。 java.util.PriorityQueue:使用

thumbnail of the cover of the post

字符串

1、反转字符1 题目: https://leetcode.cn/problems/reverse-string/description/ class Solution { public void reverseString(char[] s) { int n=s.length

thumbnail of the cover of the post

docker-compose-安装SqlServer

1、拉取镜像:docker pull microsoft/mssql-server-linux:latest 2、编辑docker-compose.yml文件: version: '3' services: #服务名称 sqlserver-db: #容器名称 containe

thumbnail of the cover of the post

哈希表

1、快乐数 题目链接:https://leetcode.cn/problems/happy-number/description/ 我们可以看到如果有循环的话,直接就输出false就行,那么当我们遇到了要快速判断一个元素是否出现集合里的时候,就要考虑哈希法了。 方法一:哈希表 package com

thumbnail of the cover of the post

链表

1、环形链表 题目:https://leetcode.cn/problems/linked-list-cycle-ii/description/ ①使用哈希表 public class Solution { public ListNode detectCycle(ListNode head)

thumbnail of the cover of the post

Java-深拷贝

大家都知道java里面分为浅拷贝和深拷贝。举个简单的例子,区分一下浅拷贝和深拷贝的区别 public class Address{ private String address; public Address(String address){ this.addre

thumbnail of the cover of the post