受欢迎的博客标签
RSS

博客

BarTender 集成模式之一:集成模式总目录
BarTender的几种集成模式。ActiveX COM集成,Commander的触发式集成,还有9.0版本后支持的.NET SDK的支持。
C#项目中操作Excel文件的四种方式(access excel file in my application  using .Net and c# for development in a system where ms office is not installed)
C#项目中操作Excel文件的四种方式 Is there a C# code to read and display Excel sheets? 不存在,通讯的时候用的是DDE,所以OLE曾经不是基于COM的。OLE 2.0就是基于COM了。考虑到OLE 1.0现在已经基本没人用了,说OLE是基于COM也没有什么问题。微软目前提到OLE的时候一般是特指复合文档(比如在WordPad里面插入MSPaint这样),除非加一个2.0后缀。一些人继续用OLE这个名称称呼 作者:蒋晟 链接:https://www.zhihu.com/question/38612536/answer/85304442 来源:知乎 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
How to port a Windows Forms desktop app to .NET Core
In this post, I will describe how to port a desktop application from .NET Framework to .NET Core.
ASP.NET Core localization middleware with JSON resource files
ASP.NET Core localization middleware with JSON resource files
.NET 6.0:  Blazor server project running on NGINX throws Websocket error
Recently when upgrading to .NET 6.0 I encountered (even with a blank Blazor project) some problems with a websocket error message in the browser only when deployed on my webserver
ASP.NET Core Blazor WebAssembly 6.x
Create ASP.NET Core Blazor WebAssembly 5.x project with option clent and host checked
制造业二维码追溯系统解决方案-超级盘点机(开发者)
制造业二维码追溯系统解决方案-超级盘点机
Read/Write Excel file in .NET using NPOI
Microsoft Office Series:NET Core 首例 Office 开源跨平台组件(NPOI Core)
ASP.NET Core Multi-tenancy:SubDomain in multi-tenant applications ASP.NET Core with ActionFilterAttribute
Multi-tenancy is an architecture in which a single instance of a software application serves multiple customers. Each customer is called a tenant. Tenants may be given the ability to customize some parts of the application.
SubDomain in ASP.NET Core- xxx.domain.com to controller (.Net 2.x)
Asp.net Core MVC 2.x 中二级域名绑定到特定的控制器上 routes.MapDomainRoute("xxx.domain.com","areaname","controllername"); SubDomain in ASP.NET Core- xxx.domain.com to controller