上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 20 下一页
摘要: using System; using System.Data; using System.Windows.Forms; using DotNet.Utilities; namespace WindowsFormsApp1 { public partial class Form1 : Form { 阅读全文
posted @ 2020-04-16 12:48 liessay 阅读(733) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文
posted @ 2020-01-16 19:21 liessay 阅读(1072) 评论(0) 推荐(0) 编辑
摘要: //每次保存后自动格式化 "editor.formatOnSave": true, // #每次保存的时候将代码按eslint格式进行修复 "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, // #让函数(名)和后面的括号之间 阅读全文
posted @ 2020-01-16 09:13 liessay 阅读(602) 评论(0) 推荐(1) 编辑
摘要: Model层Region.cs using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace WebApplication1.Models { public class R 阅读全文
posted @ 2020-01-15 22:01 liessay 阅读(888) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-e 阅读全文
posted @ 2020-01-14 15:25 liessay 阅读(3167) 评论(0) 推荐(0) 编辑
摘要: 拼接sql语句会造成sql注入,注入演示 namespace WindowsFormsApp1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_C 阅读全文
posted @ 2019-12-11 09:05 liessay 阅读(764) 评论(0) 推荐(0) 编辑
摘要: Form2 Form1 效果 阅读全文
posted @ 2019-12-10 08:35 liessay 阅读(232) 评论(0) 推荐(1) 编辑
摘要: View Controller 阅读全文
posted @ 2019-11-29 14:40 liessay 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 单条记录添加 第一种方式: public void AddRegion() { using(Northwind db = new Northwind()) { Region region = new Region(); region.RegionID = 5; region.RegionDescri 阅读全文
posted @ 2019-11-28 12:59 liessay 阅读(1432) 评论(0) 推荐(0) 编辑
摘要: 右击项目——添加——新建项——数据(C#)——选择ADO.NET实体数据模型——点击添加——然后根据实体数据模型向导来一步步的做。 用到的表 1 using System; 2 using System.Data; 3 using System.Linq; 4 using System.Window 阅读全文
posted @ 2019-11-27 15:22 liessay 阅读(447) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 20 下一页