10 2021 档案
摘要:一、打开控制面板-程序和功能-启用或关闭windows功能,比较主要的几个功能都勾选一下,然后重启电脑 二、电脑重启之后就可以看到iis管理器了 三、打开文件‘C:\Windows\System32\drivers\etc\hosts’,输入自定义的ip和域名,注意:使用管理员身份打开,否则会出现无
阅读全文
摘要:一、创建一个用户自定义表类型 CREATE TYPE [dbo].[Excel_HsCode] AS TABLE( [material_no] [varchar](100) NULL, [oldhs_code] [varchar](100) NULL, [newhs_code] [varchar](
阅读全文
摘要:using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Linq; using System.Text; using System.Thr
阅读全文
摘要:using System; using System.IO; namespace ConsoleApp4.Extensions { public class Logger { private static object obj = new object(); /// <summary> /// 将日
阅读全文
摘要:一、首先运行命令安装NuGet包:(使用命令行可以避免一些NuGet包版本兼容问题) 1、Install-Package Microsoft.EntityFrameworkCore 2、Install-Package Microsoft.EntityFrameworkCore.SqlServer 二
阅读全文
摘要:var pages = getCurrentPages(); var beforePage = pages[pages.length - 2]; // 调用列表页的获取数据函数 wx.navigateBack({ delta: 1, //返回的页面数,如果 delta 大于现有页面数,则返回到首页。
阅读全文
摘要:select a.name tabname,a1.name '字段',b.value '描述' from sysobjects a left join sys.columns a1 on a.id = a1.object_id left join sys.extended_properties b
阅读全文
摘要:onLoad(options) { const updateManager = wx.getUpdateManager() updateManager.onCheckForUpdate(function (res) { // 请求完新版本信息的回调 console.log(res.hasUpdate
阅读全文
摘要:using Fast.NetCore.Web.Extend; using Microsoft.AspNetCore.Http; using System; using System.Collections.Generic; using System.Linq; using System.Web; n
阅读全文
摘要:using Microsoft.AspNetCore.Http; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Fast.NetCo
阅读全文
摘要:using Fast.NetCore.Web.Interface; using Newtonsoft.Json; using StackExchange.Redis; using System; using System.Collections.Generic; using System.Linq;
阅读全文
摘要:using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Text; using System.Threading.Tasks;
阅读全文
摘要:using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Text; using System.Text.RegularExpr
阅读全文
摘要:private static readonly object Obj_Lock = new object(); public static string GetUserName() { lock (Obj_Lock) { return "张三"; } }
阅读全文