2020年8月20日
摘要: 1.今日任务: ①完善课程大纲 ②规划燃尽图 2.任务实现 ①课程大纲 ②燃尽图 阅读全文
posted @ 2020-08-20 17:42 死鱼眼的坂田银 阅读(82) 评论(0) 推荐(0)
2020年8月14日
摘要: 1.今日任务: ①驾驶员信息添加 ②驾驶员信息编辑 ③驾驶员信息删除 ④驾驶员信息显示与搜索 2.核心代码和效果图: public class DriversController : Controller { carSystemEntities db = new carSystemEntities( 阅读全文
posted @ 2020-08-14 10:23 死鱼眼的坂田银 阅读(87) 评论(0) 推荐(0)
摘要: 1.今日任务: ①车辆信息添加 ②车辆信息删除 ③车辆信息修改 ④车辆信息显示与搜索 2.核心代码和效果图: public class CarsController : Controller { carSystemEntities db = new carSystemEntities(); // G 阅读全文
posted @ 2020-08-14 10:18 死鱼眼的坂田银 阅读(107) 评论(0) 推荐(0)
摘要: 1.今日任务: ①客户信息添加 ②客户信息编辑 ③客户信息删除 ④客户信息显示搜索 2.核心代码和效果图 public class CustomerController : Controller { carSystemEntities db = new carSystemEntities(); // 阅读全文
posted @ 2020-08-14 10:13 死鱼眼的坂田银 阅读(112) 评论(0) 推荐(0)
2020年7月30日
摘要: 1.今日任务: ①美化主页 ②使用判断在前台分角色名称显示不同的功能模块 ③带有session传值到主页面显示当前登录的用户名和角色名称 2.核心代码和效果图: 效果图: 业务员: 管理员: 财务员: 核心代码: public ActionResult Login(string username,s 阅读全文
posted @ 2020-07-30 22:09 死鱼眼的坂田银 阅读(86) 评论(0) 推荐(0)
摘要: 1.今日任务:美化了登录页面 2.核心代码和效果图: 效果图: 对页面文本框验证写了长度限制和不能为空提示,和直接跳转去注册的页面: 部分代码: <h3>欢迎使用H+车辆管理系统</h3> <form class="m-t" action="Login" method="post"> <div cl 阅读全文
posted @ 2020-07-30 21:49 死鱼眼的坂田银 阅读(96) 评论(0) 推荐(0)
2020年7月24日
摘要: 1.今日任务:优化登录后分角色显示页面 2.核心代码和效果图: 效果图: 对页面文本框验证写了长度限制和不能为空提示: public async Task<bool> Login(string u_name, string u_pwd) { using (IDAL.IUserService user 阅读全文
posted @ 2020-07-24 17:10 死鱼眼的坂田银 阅读(127) 评论(0) 推荐(0)
摘要: 1.今日完成任务: ① 创建角色 ② 用户注册 2.核心源码: ① 创建角色 public class RoleManager : IBLL.IRoleManager { public async Task AddRole(string r_name) { using (IDAL.IRoleServ 阅读全文
posted @ 2020-07-24 11:57 死鱼眼的坂田银 阅读(119) 评论(0) 推荐(0)
2020年7月22日
摘要: 重新创建了Model层,用来存储EF namespace CarSystem.Model { using System; using System.Data.Entity; using System.Data.Entity.ModelConfiguration.Conventions; using 阅读全文
posted @ 2020-07-22 17:01 死鱼眼的坂田银 阅读(148) 评论(0) 推荐(0)
2020年7月20日
摘要: 1.这是第一篇mvc登录实现博客。 using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using Demo.Models; //命名空间 阅读全文
posted @ 2020-07-20 10:48 死鱼眼的坂田银 阅读(127) 评论(0) 推荐(0)