电脑桌面
添加小米粒文库到电脑桌面
安装后可以在桌面快捷访问

学生信息管理系统-系统源代码

学生信息管理系统-系统源代码_第1页
1/33
学生信息管理系统-系统源代码_第2页
2/33
学生信息管理系统-系统源代码_第3页
3/33
系统源代码一、登录界面代码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 。...

1、当您付费下载文档后,您只拥有了使用权限,并不意味着购买了版权,文档只能用于自身使用,不得用于其他商业用途(如 [转卖]进行直接盈利或[编辑后售卖]进行间接盈利)。
2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。
3、如文档内容存在违规,或者侵犯商业秘密、侵犯著作权等,请点击“违规举报”。

碎片内容

学生信息管理系统-系统源代码

确认删除?
VIP
微信客服
  • 扫码咨询
会员Q群
  • 会员专属群点击这里加入QQ群
客服邮箱
回到顶部