刹那的菜鸟

博客园 首页 新随笔 联系 管理
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 21 下一页

2017年11月23日 #

摘要: .net Core2.0应用程序发布window服务器报错容易错过的配置。 1.应用程序发布。 2.IIS上新建网站。 3.应用程序池选择无托管代码。 4.服务器上安装DotNetCore.1.0.2-WindowsHosting。 安装成功后重启服务器。 在命令程序中输入 net stop was 阅读全文
posted @ 2017-11-23 18:59 刹那的菜鸟 阅读(1431) 评论(0) 推荐(0) 编辑

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%' 阅读全文
posted @ 2017-11-08 17:00 刹那的菜鸟 阅读(873) 评论(0) 推荐(0) 编辑

2017年9月19日 #

摘要: 今日碰见奇葩问题,调用微信公众平台的分享接口,自己分享的只有自己能看见图片别人看不见, 经过测试,发现红包和领取者两个词不能同时出现,红包中间加空格,标点符号都不行 阅读全文
posted @ 2017-09-19 10:31 刹那的菜鸟 阅读(154) 评论(0) 推荐(0) 编辑

2017年9月17日 #

摘要: 引用 Microsoft.Extensions.Caching.SqlServer 可以设置存在数据库 Microsoft.Extensions.Caching.Redis 存在redis 参考 http://www.cnblogs.com/hantianwei/p/5723959.html // 阅读全文
posted @ 2017-09-17 22:25 刹那的菜鸟 阅读(525) 评论(0) 推荐(0) 编辑

2017年8月31日 #

摘要: net core 6以后解决方法: Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation 安装nuget这个 services.AddRazorPages() .AddRazorRuntimeCompilation(); 然后项目文件 修改 增加内容 < 阅读全文
posted @ 2017-08-31 18:58 刹那的菜鸟 阅读(457) 评论(0) 推荐(0) 编辑

摘要: 1、直接修改项目 1.1 改成 2.0 Startup 的修改 去除构造函数中下面的代码 var builder = new ConfigurationBuilder() .SetBasePath(env.ContentRootPath) .AddJsonFile("appsettings.json 阅读全文
posted @ 2017-08-31 11:18 刹那的菜鸟 阅读(287) 评论(0) 推荐(0) 编辑

2017年8月10日 #

摘要: webclient 可以替换为 HttpClient 下载获取url的内容: 证书: https://stackoverflow.com/questions/40014047/add-client-certificate-to-net-core-httpclient 阅读全文
posted @ 2017-08-10 17:24 刹那的菜鸟 阅读(107) 评论(0) 推荐(0) 编辑

2017年8月1日 #

摘要: public static string Post(string url, string data, Encoding encoding) { try { HttpWebRequest req = WebRequest.CreateHttp(new Uri(url)); req.ContentTyp 阅读全文
posted @ 2017-08-01 22:35 刹那的菜鸟 阅读(730) 评论(0) 推荐(0) 编辑

摘要: 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... 阅读全文
posted @ 2017-08-01 17:30 刹那的菜鸟 阅读(441) 评论(0) 推荐(0) 编辑

2017年7月28日 #

摘要: 1、先cmd到指定的网站目录, 然后执行 dotnet xxx.dll, 浏览器查看 localhost:5000 确认没有问题之后才去部署到iis 阅读全文
posted @ 2017-07-28 12:05 刹那的菜鸟 阅读(251) 评论(0) 推荐(0) 编辑

上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 21 下一页