
.net core
全栈
从事软件开发工作多年,拥有较为丰富的开发经验,主导多个大型项目的研发工作,丰富的项目经验。
设计软件架构和撰写软件方案等。
展开
-
基于.net webapi 搭建的项目后台管理框架(2)
基于.net webapi 搭建的项目后台管理框架(2)原创 2023-03-27 17:45:03 · 312 阅读 · 0 评论 -
asp GridView AllowSorting 不生效
最近在维护一个N年老项目,想着在Gridview 设置AllowSorting="true"但排序还不管用。 <asp:GridView ID="GridView1" runat="server" AllowPaging="True" AutoGenerateColumns="False" CellPadding="4" CssClass ="gridview" onpageindexchanging="GridView1_Pa...原创 2021-01-21 16:02:36 · 558 阅读 · 0 评论 -
webform asp.net gridview 分页 利用aspnetpager 分页
最近做项目成功温习了一个10年前的老项目asp.netwebform 哈哈。这里温习下,gridview 真分页原创 2020-11-10 18:10:24 · 493 阅读 · 0 评论 -
IIS安装不了 ASP.NET (4.0.30319.0)
我的电脑win10专业版(家庭版升级来的)现象再现: 今日在Win10上面ASP.NET网站突然不能跑了,过程再现: 根据资料提示重新注册ASPNET_IIS.exe -i 直接提示: C:\WINDOWS\system32>c:\windows\microsoft.net\framework64\v4.0.30319\aspnet_regiis.exe -i Microsoft (R) ASP.NET RegIIS 版本 4.0.30319.0 用于在本地计算机上安原创 2020-11-03 11:37:31 · 2612 阅读 · 4 评论 -
.net 5.0 webAPI
今天抽时间使用了下微软最新的.net 5.0 的webAPI 发现自动集成了Swagger 。微软自从收购github 拥抱开源后,在自家的产品上原来逐渐提现出来。从VS 2019 集成git开始。。。写个测试实例: [HttpGet] [Route("api/test1")] public List<EmpInfo> test1() { List<EmpInfo> empInfos =原创 2021-07-02 17:32:04 · 621 阅读 · 0 评论 -
linux 安装.net 5.0
目录一 、环境搭配二、下载SDK包三、ubuntu安装 .net 5.0四、 创建.net 5.0 web 项目五、发布web一 、环境搭配首先在官网看下支持的linux版本:https://docs.microsoft.com/zh-cn/dotnet/core/install/linux如图所示我们用的系统:还是支持的啊。。。ubuntu 16.04 LTS 安装.net 5.0二、下载SDK包https://dotnet.micros...原创 2021-02-04 15:17:44 · 4515 阅读 · 2 评论 -
An unhandled exception occurred while processing the request 解决办法
webapi报错:An unhandled exception occurred while processing the request.AmbiguousActionException: Multiple actions matched. The following actions matched route data and had all constraints satisfied:HcyDevServer.Controllers.UserInfoController.Get (HcyDe原创 2020-06-26 22:08:52 · 13990 阅读 · 0 评论 -
VS2017 IIS 部署.net core web项目
直接上内容: 安装IIS 这个不在重复,可百度搜索到。 点击IIS 查看模块:查看是否安装了 AspNetCoreModule 模块,如果没有安装可下载:http://download.microsoft.com/download/3/8/1/381CBBF3-36DA-4983-BFF3-5881548A70BE/DotNetCore.1.0.4_1.1.1-WindowsHosting.ex...原创 2018-06-01 10:19:54 · 11424 阅读 · 0 评论 -
.net core 创建web项目
环境:ubuntu 16.04.net core 2.2直接使用命令 :dotnet new 可以查看到能创建的项目类型hcy@hcy-System-Product-Name:~/dotnet/project$ dotnet newUsage: new [options]Options: -h, --help Displays help for t...原创 2019-04-04 17:36:30 · 1350 阅读 · 0 评论