一、源码特点
asp.net乒乓球场地管理系统是一套完善的web设计管理系统,系统具有完整的源代码和数据库,系统主要采用B/S模式开发。开发环境为vs2010,数据库为sqlserver2008,使用c#语
言开发
asp.net 乒乓球场地管理系统
二、功能介绍
(1)管理员管理:对管理员信息进行添加、删除、修改和查看
(2)用户管理:对用户信息进行添加、删除、修改和查看
(3)场地管理:对场地信息进行添加、删除、修改和查看
(4)时间段管理:对时间段信息进行添加、删除、修改和查看
(5)场地预定管理:对场地预定信息进行添加、删除、修改和查看
(6)用户登录 个人信息修改
系统设计
- string cd = "";
- protected void Page_Load(object sender, EventArgs e)
- {
- string cda = Request.QueryString["cd"].ToString();
- if (!IsPostBack)
- {
- this.cd.Text = cda;
-
- if (Session["yhm"] != null) {
-
- this.yh.Text = Session["yhm"].ToString();
- }
- TimeSpan ts = DateTime.UtcNow - new DateTime(1970, 1, 1, 0, 0, 0, 0);
- this.ls.Text = Convert.ToInt64(ts.TotalSeconds).ToString();
- }
- }
- protected void Button1_Click(object sender, EventArgs e)
- {
-
- string ls=this.ls.Text;//流水
- string fy = Request.QueryString["fy"].ToString();
- string cd=this.cd.Text;//场地
-
- string ydsj=this.ydsj.Text;//预定时间
-
- string sjd=this.sjd.Text;//时间段
-
- string yh=this.yh.Text;//用户
-
- string zt=this.zt.Text;//状态
-
- string sm=this.sm.Text;//说明
-
-
- // 校验变量
- if(ls.Length==0){
-
- MessageBox.Show(this.Page,"流水不能为空");
-
- return ;
-
- }
-
-
- if(cd.Length==0){
-
- MessageBox.Show(this.Page,"场地不能为空");
-
- return ;
-
- }
-
-
- if(ydsj.Length==0){
-
- MessageBox.Show(this.Page,"预定时间不能为空");
-
- return ;
-
- }
-
-
- if(sjd.Length==0){
-
- MessageBox.Show(this.Page,"时间段不能为空");
-
- return ;
-
- }
-
-
- if(yh.Length==0){
-
- MessageBox.Show(this.Page,"用户不能为空");
-
- return ;
-
- }
-
-
- if(zt.Length==0){
-
- MessageBox.Show(this.Page,"状态不能为空");
-
- return ;
-
- }
-
-
- if(sm.Length==0){
-
- MessageBox.Show(this.Page,"说明不能为空");
-
- return ;
-
- }
- int num = 0;
- string sql = "select count(1) as num from cdyd where cd='" + cd + "' and ydsj='" + ydsj + "' and sjd='"+sjd+"' ";
- DataTable dt = DBHelper.GetDataSet(sql);
- if (dt.Rows.Count > 0)
- {
-
- num = int.Parse(dt.Rows[0]["num"].ToString()); //数量
-
- }
- if (num > 0)
- {
- MessageBox.Show(this.Page, "数据重复");
-
- return;
-
- }
-
三、注意事项
1、管理员账号:admin 密码:admin
2、开发环境为vs2010,数据库为sqlserver2008,或者 以上版本都可以,使用c#语言开发。
3、数据库文件名是netcdgl.mdf
4.登录地址:login.aspx
四 系统实现