资源简介
.net自动排课系统完整源码(适合智慧校园)2019
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
namespace 排课系统
{
public partial class Default : System.Web.UI.Page
{
protected void Page_Load(object sender EventArgs e)
{
if (!IsPostBack)
{
//this.username.Text = “admin“;
//this.password.Text = “admin“;
//this.code.Value = Session[“LVNum“].ToString();
//submit_login(sendere);
//Session.Clear();
}
}
protected void submit_login(object sender EventArgs e)
{
//WebMessageBox.Show(“用户名不能为空“);
if (this.username.Text.Length < 1)
{
WebMessageBox.Show(“用户名不能为空“); return;
}
if (this.password.Text.Length < 1)
{
WebMessageBox.Show(“密码不能为空“); return;
}
if (this.code.Value.Length < 1)
{
WebMessageBox.Show(“验证码不能为空“); return;
}
String num = Session[“LVNum“].ToString();
if (!num.Equals(this.code.Value))
{
WebMessageBox.Show(“验证码输入错误“); return;
}
if (RadioButton2.Checked) //管理员
{
if (Operation.getDatatable(“select * from t_admin where username=‘“ + this.username.Text + “‘ and userpwd=‘“ + this.password.Text + “‘“).Rows.Count < 1)
{
WebMessageBox.Show(“用户或密码错误“); return;
}
Session[“username“] = username.Text;
Response.Redirect(“admin/index.aspx“);
}
else {
//教师
DataTable dt=Operation.getDatatable(“select * from t_teacher where teachid=‘“ + this.username.Text + “‘ and pwd=‘“ + this.password.Text + “‘“);
if (dt.Rows.Count < 1)
{
WebMessageBox.Show(“用户或密码错误“); return;
}
Session[“teachid“] = username.Text;
Session[“teachname“] = dt.Rows[0][“name“].ToString();
Response.Redirect(“teacher/index.aspx“);
}
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 341 2018-07-16 17:02 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\.git\config
文件 73 2018-07-16 17:00 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\.git\desc
文件 23 2018-07-16 17:02 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\.git\HEAD
文件 478 2018-07-16 17:00 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\.git\hooks\applypatch-msg.sample
文件 896 2018-07-16 17:00 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\.git\hooks\commit-msg.sample
文件 3327 2018-07-16 17:00 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\.git\hooks\fsmonitor-watchman.sample
文件 189 2018-07-16 17:00 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\.git\hooks\post-update.sample
文件 424 2018-07-16 17:00 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\.git\hooks\pre-applypatch.sample
文件 1642 2018-07-16 17:00 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\.git\hooks\pre-commit.sample
文件 1348 2018-07-16 17:00 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\.git\hooks\pre-push.sample
文件 4898 2018-07-16 17:00 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\.git\hooks\pre-reba
文件 544 2018-07-16 17:00 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\.git\hooks\pre-receive.sample
文件 1492 2018-07-16 17:00 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\.git\hooks\prepare-commit-msg.sample
文件 3610 2018-07-16 17:00 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\.git\hooks\update.sample
文件 23563 2018-07-16 17:03 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\.git\index
文件 240 2018-07-16 17:00 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\.git\info\exclude
文件 187 2018-07-16 17:02 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\.git\logs\HEAD
文件 187 2018-07-16 17:02 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\.git\logs\refs\heads\master
文件 187 2018-07-16 17:02 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\.git\logs\refs\remotes\origin\HEAD
文件 6812 2018-07-16 17:02 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\.git\ob
文件 3040485 2018-07-16 17:02 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\.git\ob
文件 114 2018-07-16 17:02 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\.git\packed-refs
文件 41 2018-07-16 17:02 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\.git\refs\heads\master
文件 32 2018-07-16 17:02 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\.git\refs\remotes\origin\HEAD
文件 492032 2018-07-16 17:02 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\data\2015-2016-1学期课表(输出1).doc
文件 55296 2018-07-16 17:02 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\data\2015-2016-2学期课表(输出2).xls
文件 597364 2018-07-16 17:02 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\data\排课规则.docx
文件 16829 2018-07-16 17:02 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\data\教学任务\信息对抗技术系教学任务表.xlsx
文件 15024 2018-07-16 17:02 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\data\教学任务\微电子技术专业教学任务表.xlsx
文件 15758 2018-07-16 17:02 .net自动排课系统完整源码(适合智慧校园)2019\net自动排课系统完整源码(适合智慧校园)\data\教学任务\电子信息工程专业教学任务表.xlsx
............此处省略401个文件信息
- 上一篇:360软件管家独立版
- 下一篇:华为数通知识基础篇
相关资源
- net自动排课系统完整源码(适合智慧
- IM仿照QQ做的即时通信,功能比较全
- ArcGIS Engine/VS开发程序 空间分析程序系
- Richard_Hu-HslCommunication-master.zip
- FastReport.Net.2020.2.13完美和谐版内附精
- 任务管理器版动画
- 自动扫码软件
- 在线直播系统 v5.7.zip
- combobox实现下拉框多选
- OA系统源码
- 超级在线考试系统
- netErpCore_V3.6 一套完整拿来即用的ERP开
- Iocomp.Components.v4.02.SP2
- [免费PDF]敏捷开发的艺术 中文高清完
- .net版微信编辑器
- Unity机械结构仿真
-
NET+fr
amework+4.0+常用类库参考手册( - 打包工具SetupFactory7.0.1破解汉化版含教
- Supermap地图着色
- VCSharp2013从入门到精通中英文版/Micr
- .netMVC框架微信公众号支付
- MapDownloader
- 语音卡开发真实案例
- NPOI2.3资源包
- .NET文件加密及其播放器
- .net版本单点登录与权限管理web api)可
- LMI 3D相机采图
- 仿通达OA完整源码
- .NET SAP NCO4.0
- 基于CSkin.dll的程序
评论
共有 条评论