2021年7月21日
摘要: 一、HTTP 协议(超文本传输协议) http 协议 版本 1.1 http由来 1960年 http通讯 http原理 URL和URI 区别 Request 请求报文 Response 响应报文 HTTP 状态码(重要) 常用的 200(成功) 500(服务器端错误) 404(URL路径错误) H 阅读全文
posted @ 2021-07-21 09:32 叫我凯凯 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 1.将跨域请求写进Web.config中 2.将跨域设置写进Global.asax.cs文件中 阅读全文
posted @ 2021-07-21 09:28 叫我凯凯 阅读(102) 评论(0) 推荐(0) 编辑
  2021年7月17日
摘要: 在DAL内编辑分页代码 public List<information> Showinf(int pageindex,int pagesize,out int totalcount,out int totalpage) { IQueryable<information> list = db.info 阅读全文
posted @ 2021-07-17 07:28 叫我凯凯 阅读(64) 评论(0) 推荐(0) 编辑
  2021年7月15日
摘要: 数据迁移: 一: 创建Model类之后选择NuGet包管理器=>程序包管理器控制台 二:输入命令 输入Enable-Migrations: Configuration文件中 false改成true AutomaticMigrationsEnabled = true; 输入:add-migration 阅读全文
posted @ 2021-07-15 20:51 叫我凯凯 阅读(82) 评论(0) 推荐(0) 编辑
  2021年7月14日
摘要: 一、DbFirst (数据库优先,了解)二、ModelFirst(模型优先,了解)三、CodeFirst (代码优先,适用于各种大型企业20)1.数据迁移->工具->NuGet管理器->程序包管理器控制台->(3个命令)1)、enable-migrations --启动数据迁移(将默认的改成true 阅读全文
posted @ 2021-07-14 21:19 叫我凯凯 阅读(28) 评论(0) 推荐(0) 编辑