随笔分类 -  Net

摘要:from:http://www.cnblogs.com/zeusro/p/5171084.html 运用.net core配合VS 2015制作nuget包 以往做nuget包我们一般要么用命令行,要么用nuget的图形化界面去做,但是一些操作比较麻烦.比如引入命名空间,引入第三方nuget包.今天 阅读全文
posted @ 2016-08-05 10:26 94cool 阅读(227) 评论(0) 推荐(0) 编辑
摘要:WebDAV 是超文本传输协议 (HTTP) 的一组扩展,为 Internet 上计算机之间的编辑和文件管理提供了标准.利用这个协议用户可以通过Web进行远程的基本文件操作,如拷贝、移动、删除等。在IIS 7.0中,WebDAV是作为独立扩展模块,需要单独进行下载,而IIS 7.5中将集成WebDA 阅读全文
posted @ 2016-08-03 09:12 94cool 阅读(404) 评论(0) 推荐(0) 编辑
摘要:win2008server R2 x64 部署.net core到IIS上出现【Failed to load the dll from [C:\Program Files\dotnet\host\fxr\1.0.1\hostfxr.dll], HRESULT: 0x80070057】错误 解决方法: 阅读全文
posted @ 2016-08-02 14:20 94cool 阅读(6395) 评论(1) 推荐(4) 编辑
摘要:from:https://blogs.msdn.microsoft.com/scott_hanselman/2014/12/21/asp-net/ [原文发表地址] How to run Background Tasks in ASP.NET [原文发表时间] 2014-08-26 几年前,Phil 阅读全文
posted @ 2016-08-01 12:10 94cool 阅读(932) 评论(1) 推荐(0) 编辑
摘要:安装 DotNetCore.1.0.0-VS2015Tools.Preview2,已经安装vs2015update3,还是提示检测到 Visual Studio 2015 Update 3没有完全安装,请修复Visual Studio 2015 Update 3 解决方法:控制台下输入命令 DotN 阅读全文
posted @ 2016-07-24 19:52 94cool 阅读(2494) 评论(6) 推荐(2) 编辑
摘要:from:http://www.1234.sh/post/pomelo-data-mysql?utm_source=tuicool&utm_medium=referral Source 源代码在GitHub中以MIT协议开源: Pomelo.Data.MySql Pomelo.EntityFrame 阅读全文
posted @ 2016-07-22 17:26 94cool 阅读(7470) 评论(2) 推荐(2) 编辑
摘要:from:https://damienbod.com/2015/12/13/asp-net-5-mvc-6-api-documentation-using-swagger/ 代码生成工具: https://github.com/NSwag/NSwag This article shows how t 阅读全文
posted @ 2016-07-22 13:42 94cool 阅读(1153) 评论(0) 推荐(0) 编辑
摘要:from:http://www.cnblogs.com/stickman/p/3454719.html 经过多次的实验,终于完美生成一个.VSIX的项目模板安装包,其中遇到不少问题与挫折,久经google/baidu/自行摸索.终于解决所有问题. 现将心得记录总结如下 关于.vstemplate 1 阅读全文
posted @ 2016-07-22 09:07 94cool 阅读(1457) 评论(0) 推荐(0) 编辑
摘要:from:http://www.cnblogs.com/wuhuacong/p/4759564.html 在上篇《基于Metronic的Bootstrap开发框架经验总结(1)-框架总览及菜单模块的处理》介绍了Bootstrap开发框架的一些基础性概括,包括总体界面效果,以及布局、菜单等内容,本篇继 阅读全文
posted @ 2016-07-21 10:06 94cool 阅读(826) 评论(0) 推荐(0) 编辑
摘要:from:http://www.cnblogs.com/wuhuacong/p/4620300.html 在上篇随笔《Web API应用架构设计分析(1)》,我对Web API的各种应用架构进行了概括性的分析和设计,Web API 是一种应用接口框架,它能够构建HTTP服务以支撑更广泛的客户端(包括 阅读全文
posted @ 2016-07-21 09:58 94cool 阅读(247) 评论(0) 推荐(0) 编辑
摘要:from:http://www.cnblogs.com/wuhuacong/p/4614875.html Web API 是一种应用接口框架,它能够构建HTTP服务以支撑更广泛的客户端(包括浏览器,手机和平板电脑等移动设备)的框架, ASP.NET Web API 是一种用于在 .NET Frame 阅读全文
posted @ 2016-07-21 09:57 94cool 阅读(233) 评论(0) 推荐(0) 编辑
摘要:测试中发现webclient 比浏览器加载页面慢的一个问题;原因WebClient 支持 gzip, deflate,但是未设置 解决方案: class WebClientEx : WebClient { int timeout = 60; public WebClientEx(int timeou 阅读全文
posted @ 2016-07-08 11:42 94cool 阅读(890) 评论(0) 推荐(0) 编辑
摘要:from:http://blog.liuts.com/post/128/ 阅读全文
posted @ 2016-06-30 14:59 94cool 阅读(599) 评论(0) 推荐(0) 编辑
摘要:Could not load file or assembly 'System.Data.SQLite.dll' or one of its dependencies. 找不到指定的模块。 错误提示如下: Could not load file or assembly 'System.Data.SQ 阅读全文
posted @ 2016-03-30 09:57 94cool 阅读(6300) 评论(0) 推荐(0) 编辑
摘要:1///2///二叉树3///4///5classRoad6{7Tdata;8RoadLnode,rnode,pnode;9publicTData10{11get{returndata;}12set{data=value;}13}14publicRoadLNode15{16get{returnLn... 阅读全文
posted @ 2015-08-27 11:30 94cool 阅读(1175) 评论(0) 推荐(0) 编辑
摘要:发生未处理的域异常!System.ObjectDisposedException: Cannot access a disposed object.Object name: 'System.Net.Sockets.Socket'. at System.Net.Sockets.Socket.SendA... 阅读全文
posted @ 2015-06-24 11:49 94cool 阅读(7738) 评论(0) 推荐(2) 编辑
摘要:from:http://www.cnblogs.com/tianzhiliang/archive/2011/06/13/2079564.html一个误解: 单个服务器程序可承受最大连接数“理论”上是“65535”2011-06-13 11:47 by 田志良,5321阅读,8评论,收藏,编辑 请注... 阅读全文
posted @ 2015-06-12 14:28 94cool 阅读(619) 评论(0) 推荐(0) 编辑
摘要:在App_Code中添加BundleConfig.csusingSystem.Web.Optimization;publicclassBundleConfig{publicstaticvoidRegisterBundles(BundleCollectionbundles){bundles.Add(n... 阅读全文
posted @ 2015-06-11 12:39 94cool 阅读(2205) 评论(0) 推荐(0) 编辑
摘要:rom:http://www.lmwlove.com/ac/ID879在asp.net中开发自定义控件时,如果我们要用到图片,外部css,js等文件,那么最好的方式就是将这些文件作为自定义控件嵌入的资源,随着控件一起打包成dll文件发布。那么我们要如何将这些文件设置为嵌入的资源,又如何在自定义控件引... 阅读全文
posted @ 2015-04-07 14:12 94cool 阅读(1562) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2015-04-02 15:26 94cool 阅读(208) 评论(0) 推荐(0) 编辑

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示