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