金苹果萍水相逢

导航

 

2020年7月17日

摘要: 今日任务: 1、批量导入考生信息 核心代码: 视图: <div> @using (Html.BeginForm("ImportStudent", "Admin", FormMethod.Post, new { enctype = "multipart/form-data" })) { <h2> 批量 阅读全文
posted @ 2020-07-17 17:44 小橙子儿 阅读(452) 评论(0) 推荐(0) 编辑
 
摘要: 1、管理员登录 页面效果 实现步骤: public ActionResult AdminLogin(AdminLoginModel model) { if (FormsAuthentication.Authenticate(model.UserName, model.Password)) { For 阅读全文
posted @ 2020-07-17 10:37 小橙子儿 阅读(883) 评论(0) 推荐(2) 编辑
 
摘要: --切换数据库use mastergo --判断数据库是否存在,如果存在则删除if exists(select * from sys.databases where name='OnlineExamDB')drop database OnlineExamDBgo --创建OnlineExamDB数据 阅读全文
posted @ 2020-07-17 10:01 小橙子儿 阅读(649) 评论(0) 推荐(0) 编辑