摘要:
https://blog.csdn.net/dqcoffee/article/details/91353543 阅读全文
摘要:
问题: 详细的问题如下图: 解决方法: 找到应用程序池,右键“高级设置”,如下图: 找到高级设置里的“标识”项 原来的是值是“ApplicationPoolIdentity” 改为:LocalSystem即可,如下图: 阅读全文
摘要:
接上一篇,上面已经完成的数据的绑定,但如果想实现绑定之前对数据进行数据或加条件判断的话,可以使用 IValueConverter 下面实现一下: 一、增加一个IValueConverter的实现类 代码如下,代码的意义是:只显示500以上的数字,500以下的统统显示为0 using System; 阅读全文
摘要:
一、新建解决方案 创建一个wpf测试项目 二、新建一个静态变量 using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; nam 阅读全文
摘要:
错误 NU1605: 检测到包降级: System.Runtime.InteropServices 从 4.3.0 降级到 4.1.0。直接从项目引用包以选择不同版本等 发布时出现了特别多类似于这样很奇怪的问题 结果更新了一下log4net的版本解决了,奇怪。 阅读全文
摘要:
1、增加一个类 using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Builder; using Mic 阅读全文
摘要:
一、报下面的错误 {StatusCode: 401, ReasonPhrase: 'Unauthorized', Version: 1.1, Content: System.Net.Http.StreamContent, Headers: { Transfer-Encoding: chunked D 阅读全文
摘要:
把.net core2.1的identityServer4的项目升级成3.1后,出现如下错误: System.InvalidOperationException: Unable to resolve service for type 'Microsoft.Extensions.Logging.ILo 阅读全文
摘要:
一、引用nuget Microsoft.AspNetCore.Mvc.NewtonsoftJson 二、在StartUp里增加代码 public void ConfigureServices(IServiceCollection services) { services.AddCors(option 阅读全文
摘要:
下面以添加signalr为例 1、在项目上右键,选择“添加”,如下图: 2、点击“添加”后选择后面的“客户端库”,如下图 3、提供程序选择“unpkg”,并填写相对应的库的名称"@microsoft/signalr@latest",如下图: 4、点击安装即可完成 阅读全文