摘要: 1 public ActionResult Show() 2 { 3 return View(); 4 } 5 public ActionResult Add() 6 { 7 return View(); 8 } 9 public ActionResult Del() 10 { 11 return 阅读全文
posted @ 2020-07-10 08:13 小马の 阅读(145) 评论(0) 推荐(0)
摘要: 1 public List<Dai> Show(string name="") 2 { 3 using (SqlConnection conn=new SqlConnection("Data Source=.;Initial Catalog=Dai6_21;Integrated Security=T 阅读全文
posted @ 2020-07-10 08:09 小马の 阅读(130) 评论(0) 推荐(0)
摘要: create database Dai6_21 use Dai6_21 --存款 create table deposit ( Id int primary key identity, UName varchar(24), --存款人姓名 Zhon varchar(20), --账号 Pwd var 阅读全文
posted @ 2020-07-10 08:06 小马の 阅读(212) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Model; using Dapper; using S 阅读全文
posted @ 2020-07-08 14:36 小马の 阅读(190) 评论(0) 推荐(0)