学生管理web程序代码

学生管理web程序代码

ID:33103939

大小:93.00 KB

页数:21页

时间:2019-02-20

学生管理web程序代码_第1页
学生管理web程序代码_第2页
学生管理web程序代码_第3页
学生管理web程序代码_第4页
学生管理web程序代码_第5页
资源描述:

《学生管理web程序代码》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、个人收集整理勿做商业用途房屋销售管理系统一、HouseManagerDAL数据访问层中设计三个类:CustomerService.cs和DBhelper.cs和houseserver.cs(1)在CustomerService.cs中usingSystem;usingSystem.Collections.Generic;usingSystem.Text;usingSystem.Data;usingSystem.Data.SqlClient;usingHouseManager.Models;namespaceHouseManage

2、r.DAL{publicstaticclassCustomerService{///根据提供地登录账号查询用户信息publicstaticCustomerGetCustomerByLoginName(stringname)资料个人收集整理,勿做商业用途{stringsql=string.Format("select*fromCustomerswhereLoginName='{0}'",name);资料个人收集整理,勿做商业用途returnGetCustomerBySQL(sql);}///根据用户ID查询用户信息publicst

3、aticCustomerGetCustomerById(intid){stringsql=string.Format("select*fromCustomerswhereCustomerId={0}",id);资料个人收集整理,勿做商业用途returnGetCustomerBySQL(sql);}///私有方法,提供公共方法查询用户信息使用privatestaticCustomerGetCustomerBySQL(stringsql)资料个人收集整理,勿做商业用途{using(SqlConnectionconn=newSqlCo

4、nnection(DBHelper.connectString))资料个人收集整理,勿做商业用途{Customerc=null;try{conn.Open();SqlCommandcmd=newSqlCommand(sql,conn);SqlDataReadersdr=cmd.ExecuteReader();if(sdr.Read()){c=newCustomer();c.Id=(int)sdr["CustomerId"];c.LoginName=sdr["LoginName"].ToString();c.Password=sd

5、r["Password"].ToString();21/21个人收集整理勿做商业用途}}catch(Exceptionex){Console.WriteLine(ex.Message);}finally{conn.Close();}returnc;}}}}(2)在DBHelper中usingSystem;usingSystem.Collections.Generic;usingSystem.Text;namespaceHouseManager.DAL{publicstaticclassDBHelper{publicstaticr

6、eadonlystringconnectString="server=.;database=HouseDB;uid=sa;pwd=123456";资料个人收集整理,勿做商业用途}}(3)在HouseService中usingSystem;usingSystem.Collections.Generic;usingSystem.Text;usingSystem.Data;usingSystem.Data.SqlClient;usingHouseManager.Models;namespaceHouseManager.DAL{publ

7、icstaticclassHouseService{///获取所有发布地房屋信息publicstaticIListGetAllHouse(){Listhouses=newList();using(SqlConnectionconn=newSqlConnection(DBHelper.connectString))资料个人收集整理,勿做商业用途21/21个人收集整理勿做商业用途{try{conn.Open();SqlCommandcmd=newSqlCommand("select*from

8、Houses",conn);资料个人收集整理,勿做商业用途SqlDataReadersdr=cmd.ExecuteReader();while(sdr.Read()){Househ=newHouse();h.Id=(int)sdr["HouseId"];h.Ty

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。