- 17
- 0
- 约3.23万字
- 约 33页
- 2019-03-17 发布于安徽
- 举报
.
..
系统源代码
一、登录界面代码
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class login : System.Web.UI.Page
{
protected void txtid_Click(object sender, EventArgs e)
{
txtid.Text = ;
txtpassword.Text = ;
}
protected void Button1_Click(object sender, EventArgs e)
{
string strconn = ConfigurationManager.AppSettings[connStr];
SqlConnection conn = new SqlConnection(strconn);
conn.Open();
DataSet ds=new DataSet () ;
SqlDataAdapter da = new SqlDataAdapter(select * from users where userid= + txtid.Text + and userpwd= + txtpassword.Text + , conn);
da.Fill(ds);
if (ds.Tables[0].Rows.Count==0)
{
Label3 .Text =账号或密码错误,请重新输入!;
}
else
{
Session [userid]=txtid .Text ;
Session[userpwd] = txtpassword.Text;
Session[username] = ds.Tables[0].Rows[0][username].ToString();
Session[userpower] = ds.Tables[0].Rows[0][userpower].ToString();
if (Session[userpower].ToString () == 0)
{
Response.Redirect(admin/index.aspx);
}
else if (Session[userpower].ToString() == 1)
{
Response.Redirect(student/index.aspx);
}
else
{
Label3.Text = 对不起,权限验证失败;
}
}
conn.Close();
ds.Clear ();
}
}
二、添加课程页面代码
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public p
您可能关注的文档
- 北师大版四年级语文下册1--6单元分析.doc
- 时态讲解及练习.doc
- 新译林英语6B_全册知识点梳理(重点词汇、句型、语法知识整理)87338.doc
- 当前大学生思想道德状况调查报告.doc
- 二年级上册加减乘除口算题及竖式计算.doc
- 会计信息不对称成因及对策探讨.doc
- 基坑放坡施工方案.doc
- 景观灯安装施工专项方案...doc
- 政协提案管理系统.doc
- 安全文明施工管理体系(项目部).doc
- 浙江省温州市2024-2025学年七年级上学期语文期末考查卷.docx
- 精品解析:北京市建华实验学校2024-2025学年七年级下学期期中英语试题(原卷版).docx
- 精品解析:北京市通州区2024-2025学年七年级下学期期末考试英语试卷(原卷版).docx
- 精品解析:北京市回民学校2024-2025学年九年级上学期期中语文试题(解析版).docx
- 精品解析:北京市海淀区2025-2026学年九年级上学期期末语文试题(解析版).docx
- 精品解析:北京市东城区汇文中学2025-2026学年八年级上学期期中语文试题(原卷版).docx
- 精品解析:北京市回民学校2024-2025学年九年级上学期期中语文试题(原卷版).docx
- 精品解析:2024-2025学年广东省广州市从化区街口镇中心小学人教版五年级上册期中测试数学试卷(解析版).docx
- 精品解析:北京市通州区2024-2025学年七年级下学期期末考试英语试卷(解析版).docx
- 精品解析:北京市建华实验学校2024-2025学年七年级下学期期中英语试题(解析版).docx
原创力文档

文档评论(0)