摘要:
.net Core2.0应用程序发布window服务器报错容易错过的配置。 1.应用程序发布。 2.IIS上新建网站。 3.应用程序池选择无托管代码。 4.服务器上安装DotNetCore.1.0.2-WindowsHosting。 安装成功后重启服务器。 在命令程序中输入 net stop was 阅读全文
2017年11月23日 #
2017年11月8日 #
摘要:
SELECT b.name as TableName,a.name as columnnameFrom syscolumns aINNER JOIN sysobjects b ON a.id=b.idwhere b.type='U'AND a.name like 'store%' 阅读全文
2017年9月19日 #
摘要:
今日碰见奇葩问题,调用微信公众平台的分享接口,自己分享的只有自己能看见图片别人看不见, 经过测试,发现红包和领取者两个词不能同时出现,红包中间加空格,标点符号都不行 阅读全文
2017年9月17日 #
摘要:
引用 Microsoft.Extensions.Caching.SqlServer 可以设置存在数据库 Microsoft.Extensions.Caching.Redis 存在redis 参考 http://www.cnblogs.com/hantianwei/p/5723959.html // 阅读全文
2017年8月31日 #
摘要:
net core 6以后解决方法: Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation 安装nuget这个 services.AddRazorPages() .AddRazorRuntimeCompilation(); 然后项目文件 修改 增加内容 < 阅读全文
摘要:
1、直接修改项目 1.1 改成 2.0 Startup 的修改 去除构造函数中下面的代码 var builder = new ConfigurationBuilder() .SetBasePath(env.ContentRootPath) .AddJsonFile("appsettings.json 阅读全文
2017年8月10日 #
摘要:
webclient 可以替换为 HttpClient 下载获取url的内容: 证书: https://stackoverflow.com/questions/40014047/add-client-certificate-to-net-core-httpclient 阅读全文
2017年8月1日 #
摘要:
public static string Post(string url, string data, Encoding encoding) { try { HttpWebRequest req = WebRequest.CreateHttp(new Uri(url)); req.ContentTyp 阅读全文
摘要:
using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Net.Http.Headers; using System.Text; using System.Threa... 阅读全文
2017年7月28日 #
摘要:
1、先cmd到指定的网站目录, 然后执行 dotnet xxx.dll, 浏览器查看 localhost:5000 确认没有问题之后才去部署到iis 阅读全文