摘要: Dictionary<string, string> keyValueByFields = new Dictionary<string, string>(); keyValueByFields.Add("Doc_Name", "单证"); keyValueByFields.Add("Doc_Name 阅读全文
posted @ 2021-08-23 09:37 剑舞江南 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 1.下载相关安装包 https://dotnet.microsoft.com/download/dotnet 安装后,务必重启电脑 安装成功如下图所示: 2.添加无托管的应用程序池 3.建立本地IIS网站 4.项目属性=>调试=>设置如下图所示: 阅读全文
posted @ 2021-03-10 13:33 剑舞江南 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 官方网站地址:https://www.nartac.com/Products/IISCrypto/ 下载地址:https://www.nartac.com/Products/IISCrypto/Download下载地址:window服务器禁用默认的ssl2.0和ssl3.0只启用启用tls1.2保证 阅读全文
posted @ 2019-12-12 10:51 剑舞江南 阅读(1395) 评论(0) 推荐(0) 编辑
摘要: -- 控制树的查询深度ALTER VIEW [dbo].[V_GoodsCategoryTree]ASWITH GoodsCategoryTreeAS(select GCId, GCCode, GCParentCode, GCParentCode AS TopParentCode, (select 阅读全文
posted @ 2019-09-16 11:46 剑舞江南 阅读(199) 评论(0) 推荐(0) 编辑
摘要: <ul class="nav nav-pills nav-justified step step-arrow"> <li class="disabled"> <a>基本信息</a> </li> <li class="active"> <a>上传BP</a> </li> <li class="disa 阅读全文
posted @ 2018-11-06 21:53 剑舞江南 阅读(2704) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="utf-8"?><configuration> <location path="." inheritInChildApplications="false"> <system.webServer> <modules> <remove name 阅读全文
posted @ 2018-11-01 09:57 剑舞江南 阅读(1802) 评论(0) 推荐(0) 编辑
摘要: 解决步骤如下: 1.新建同名数据库,文件位置与原数据文件mdf文件位置一样,ldf文件可随便放置哪里,不跟原路径放一起就好。(做此步前需将原mdf文件重命名)2.停止数据库服务3.建好后找到文件路径,将新建的同名mdf文件重命名,原来的文件改回原名称4.开启数据库服务5.再在数据库里看刚刚新建的数据 阅读全文
posted @ 2018-08-16 09:59 剑舞江南 阅读(1101) 评论(0) 推荐(0) 编辑
摘要: var query = from et in _unitOfWork.Repository<EmployeeTarget>().Table join bra in _unitOfWork.Repository<BranchInfo>().Table on et.BranchCode equals b 阅读全文
posted @ 2018-08-09 11:08 剑舞江南 阅读(2968) 评论(0) 推荐(0) 编辑
摘要: protected void Page_Load(object sender, EventArgs e) { //根据appId判断获取 if (!AccessTokenContainer.CheckRegistered(appId)) //检查是否已经注册 { AccessTokenContain 阅读全文
posted @ 2018-07-19 21:18 剑舞江南 阅读(1359) 评论(0) 推荐(1) 编辑
摘要: 注意:定义的要执行的SQL语句必须是nvarchar类型 CREATE PROC P_BranchOrderSalesStatistics @beginTime DateTime, --开始时间 @endTime DateTime, --结束时间 @branchCode varchar(20), - 阅读全文
posted @ 2018-04-19 14:15 剑舞江南 阅读(1156) 评论(0) 推荐(0) 编辑