摘要: https://docs.microsoft.com/zh-cn/dotnet/framework/wpf/advanced/ 阅读全文
posted @ 2018-10-18 14:04 闫Sir 阅读(117) 评论(0) 推荐(0)
摘要: --增存储过程if exists(select * from sysobjects where name='UP_ADDSTUDENT')drop proc UP_ADDSTUDENTgocreate PROC UP_ADDSTUDENT @StuName varchar(50),--学生姓名@St 阅读全文
posted @ 2018-07-29 20:34 闫Sir 阅读(135) 评论(0) 推荐(0)
摘要: public ActionResult Index() { return View(GetStudetPage()); } [HttpPost] public ActionResult Index(string StuName, DateTime? StuKTime, DateTime? StuJT 阅读全文
posted @ 2018-07-29 20:29 闫Sir 阅读(80) 评论(0) 推荐(0)
摘要: public Pages<Students> GetStudentPage(PageParams pagePar) { int size = pagePar.PageSize; //存储过程名称 string sql = "[dbo].[p_paging]"; //参数 SqlParameter[] 阅读全文
posted @ 2018-07-28 11:31 闫Sir 阅读(95) 评论(0) 推荐(0)
摘要: /****** Object: StoredProcedure [dbo].[p_paging] Script Date: 07/14/2018 11:18:31 ******/SET ANSI_NULLS ONGO SET QUOTED_IDENTIFIER ONGO CREATE proc [d 阅读全文
posted @ 2018-07-28 11:30 闫Sir 阅读(75) 评论(0) 推荐(0)