03 2023 档案
摘要:在<configuration> 最前面添加 <!--Newtonsoft.Json 版本冲突--> <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyI
阅读全文
摘要:https://jingyan.baidu.com/article/fc07f989527b2a12ffe519d8.html
阅读全文
摘要:https://www.cnblogs.com/aj407blogs/p/9780423.html
阅读全文
摘要:https://www.cnblogs.com/zxqqqq/p/16666184.html
阅读全文
摘要:Global.asax 添加下面内容 protected void Application_Error(object sender, EventArgs e) { Exception ex = Server.GetLastError(); if (ex is HttpException && ((H
阅读全文
摘要:https://blog.csdn.net/yenange/article/details/52980135
阅读全文
摘要:SQL Server 2008 R2 企业版/开发版/标准版(中英文下载,带序列号) 说明:此激活版仅用于测试,如用于商用生产环境,产生的一切后果自负。 一. 简体中文 1. SQL Server 2008 R2 Developer (x86, x64, ia64) – DVD (Chinese-S
阅读全文
摘要:1.安装UrlRewriter 2. <system.webServer> 这个节点下面添加配置 <modules runAllManagedModulesForAllRequests="true" /> 3.配置RouteConfig 具体配置如下: routes.MapRoute( "Actio
阅读全文
摘要:public static class EFHelper { //初始化上下文 public static T1Entities db = DbContextHelper.GetCurrentDbContext(); //添加返回影响行数 public static int Add<T>(T mod
阅读全文
摘要:public static class EFHelper { //新增一条数据 public static int Add<T>(T model) where T : class { using (EFDemo001Entities db = new EFDemo001Entities()) { d
阅读全文
摘要:set IDENTITY_INSERT UserInfo ONset IDENTITY_INSERT UserInfo OFF 当 IDENTITY_INSERT 设置为 OFF 时,不能为表 'UserInfo' 中的标识列插入显式值。 打开这个设置为ON时 ,才可以显示的设置主键值。
阅读全文
摘要:1 什么是伪静态? 现在很多门户网站或者各大电商平台的网站的链接最后都是.htm或者.htm结尾,那么他们的网页真的是静态的html吗?拿京东来说,有无数个页面都都Html,在商品每时每刻都可能被更新的情况下,那是不是要有专门的人员来修改html静态页面呢,可想而知当然不是,不管是javaweb还是
阅读全文
摘要:https://www.bbsmax.com/A/lk5apay0J1/
阅读全文