系统城装机大师 - 固镇县祥瑞电脑科技销售部宣传站!

当前位置:首页 > 网络编程 > ASP.NET > 详细页面

ASP.NET实现图书管理系统的步骤详解

时间:2020-02-03来源:系统城作者:电脑系统城

一、数据库添加

1.用户信息

 用户信息表

2.图书信息表

图书信息表

3.图书借阅信息表

图书借阅表

二、版本页面

vs2010+sqlserver2008

页面数据库

三、实现功能


 
  1. 1. 用户注册登录2. 两种身份:管理员和读者3. 读者能够注册自己的账号和密码还有填写自己的个人信息4. 读者根据自己需求的借阅和归还图书5. 管理员可以增、减、查、改等图书信息,修改用户信息待完善

四、主要页面展示

1.登录页面 用户登录页面2.用户注册 用户注册页面3.个人信息表 个人信息表4.用户归还图书

用户归还书籍5.用户借阅书籍 用户借阅书籍6.用户检索书籍 用户检索书籍7.管理员页面 管理员页面

五、简单代码

1.注册页面(内容判断不在内)


 
  1. try
  2. {
  3. //赋予sql字符串数据
  4. string strsql1 = "insert into yhxx (zh,mima) values ('" + Tet_zh.Text + "','" + Tet_mima.Text+ "')";
  5. //创建字符串对象
  6. mycom = new SqlCommand(strsql1, myconn);
  7. mycom.ExecuteNonQuery();
  8. //关闭数据库
  9. myconn.Close();
  10. Response.Write("<script>alert('添加成功!!')</script>");
  11. //保存账号
  12. //str = Tet_zh.Text;
  13. //保存用户名
  14. Application["name"] = Tet_zh.Text;
  15. //如果成功了成功转入
  16. Response.Redirect("Useradd.aspx");
  17. }
  18. catch (Exception ex)
  19. {
  20. Response.Write("<script>alert('用户已存在!!')</script>");
  21. }

 

2.个人信息页面(内容判断不在内)


 
  1. protected void tianjia()
  2. {
  3. //添加用户信息
  4. try
  5. {
  6. //赋予sql字符串数据
  7.  
  8. string strsql1 = "update yhxx set xm='"+Tet_xm.Text+"',xb='"+tet_xb.Text+"',qq='"+Tet_qq.Text+"',Email='"+Tet_email.Text+"',dizhi='"+tet_home.Text+"',enjioy='"+Tet_enjoy.Text+"' where zh='"+Application["name"]+"'";
  9. // 创建字符串对象
  10. mycom = new SqlCommand(strsql1, myconn);
  11. mycom.ExecuteNonQuery();
  12. //关闭数据库
  13. myconn.Close();
  14. Response.Write("<script>alert('添加成功!!')</script>");
  15. Response.Redirect("denglu.aspx");
  16. }
  17. catch (Exception ex)
  18. {
  19. Response.Write("<script>alert('添加失败!!')</script>"+ex.Message.ToString());
  20. }
  21. }

 

3.登录页面(内容判断不在内)


 
  1. //普通用户登录,管理员登录雷同
  2. try
  3. {
  4. string sql = "select * from yhxx where zh='"+Tet_zh.Text+"' and mima='"+Tet_mm.Text+"' and yhlb='"+tet_dz.Text+"'";
  5. //创建命令对象
  6. SqlCommand com = new SqlCommand(sql,myconn);
  7. //创建读取对象
  8. SqlDataReader dr = com.ExecuteReader();
  9. //成功弹出提示框
  10. //MessageBox.Show("读取成功!!");
  11. if (dr.Read())
  12. {
  13. dr.Close();
  14. myconn.Close();
  15. Application["name1"] = Tet_zh.Text;
  16. Response.Redirect("index.aspx");
  17. }
  18. else
  19. {
  20. Response.Write("<script>alert('用户名或密码有误!!')</script>");
  21. }
  22.  
  23. }
  24. catch (Exception ex)
  25. {
  26. Response.Write("<script>alert('登录失败!!')</script>");
  27. }

 

4.图书检索


 
  1. try
  2. {
  3. //打开数据库
  4. myconn.Open();
  5. }
  6. catch (Exception ex)
  7. {
  8. Response.Write("<script>alert('数据库打开失败')</script>");
  9. }
  10. try
  11. {
  12. //创建数据字符串
  13. if (tet_name.Text == "")
  14. {
  15. Response.Write("<script>alert('名称不能为空!')</script>");
  16. }
  17. else
  18. {
  19. string strsql3 = "select BookID as 图书编号,BookName as 图书名称,"
  20. + "Booklb as 图书类别,Bookzz as 图书作者,Booklr as 图书内容,"
  21. + "Bookfm as 图书封面,Bookjg as 图书价格,Bookzt as 图书借阅状态 "
  22. + " from Bookxx where BookName='" + tet_name.Text + "'";
  23. mycom = new SqlCommand(strsql3, myconn);
  24. //打开数据库
  25. //myconn.Open();
  26. //
  27. myread = mycom.ExecuteReader();
  28. GridView1.DataSource = myread;
  29. GridView1.DataBind();
  30. GridView1.Visible = true;
  31. //关闭数据
  32. myread.Close();
  33. myconn.Close();
  34. }
  35. }
  36. catch (Exception ex)
  37. {
  38. Response.Write("<script>alert('查询失败!')</script>" + ex.Message.ToString());
  39. }

 

5.图书借阅


 
  1. 1.先添加图书
  2. if (myread.Read())
  3. {
  4. if (tet_zt.Text == "0")
  5. {
  6. //添加借阅信息表
  7. myread.Close();
  8. string strsql5 = "insert into Bookjyxx (ISBookID,ISBookname,ISBookzt,ISname,ISid) " +
  9. " values (" + Tet_Bookid.Text + ",'" + tet_Name.Text + "'," + tet_zt.Text + ",'" +Tet_xm.Text + "'," + Tet_ID.Text + ")";
  10. mycom = new SqlCommand(strsql5, myconn);
  11. mycom.ExecuteNonQuery();
  12. //关闭
  13. myconn.Close();
  14. myread.Close();
  15. //////////////////////////////////////
  16. xiugai();
  17. chaxun();
  18. }
  19. if (tet_zt.Text == "1")
  20. {
  21. Response.Write("<script>alert('该书正在借阅中')</script>");
  22. chaxun();
  23. }
  24. 2.再分别修改借阅状态
  25. //创建
  26. //先修改图书表状态信息
  27. string strsql7 = "update Bookxx set Bookzt='1' where BookID='" + Tet_Bookid.Text + "'";
  28. mycom = new SqlCommand(strsql7, myconn);
  29. myconn.Close();
  30. myconn.Open();
  31. mycom.ExecuteNonQuery();
  32. //再修改借阅状态表信息
  33. string strsql8 = "update Bookjyxx set ISBookzt='1' where ISBookID='" + Tet_Bookid.Text +"'";
  34. mycom = new SqlCommand(strsql8, myconn);
  35. mycom.ExecuteNonQuery();
  36. Response.Write("<script>alert('借阅成功!')</script>");
  37. //关闭
  38. myconn.Close();

 

6.图书归还


 
  1. //删除他的借阅图书信息
  2. string strsql3="delete from bookjyxx where ISid='"+Tet_id.Text+"'";
  3. mycom = new SqlCommand(strsql3, myconn);
  4. myconn.Open();
  5. mycom.ExecuteNonQuery();
  6. //////////////////////////////
  7. //刷新信息
  8. //查询信息
  9. string strsql4= "select ISname as 借阅者,ISid as 借阅证号码,ISBookID as 借阅书籍编号,"
  10. + "ISBookname as 借阅数据名称,ISBookzt as 借阅状态,ISdate as借阅日期 from Bookjyxx where ISid='" + Tet_id.Text + "'";
  11. mydata = new SqlDataAdapter(strsql4, myconn);
  12. DataSet set = new DataSet();
  13. mydata.Fill(set);
  14. GridView1.DataSource = set.Tables[0];
  15. GridView1.DataBind();
  16. GridView1.Visible = true;
  17. //修改状态
  18. //先修改图书表状态信息
  19. string strsql7 = "update Bookxx set Bookzt='0' where BookID='" +tet_Bookid.Text+ "'";
  20. mycom = new SqlCommand(strsql7, myconn);
  21. mycom.ExecuteNonQuery();
  22. Response.Write("<script>alert('归还成功!')</script>");
  23. //关闭
  24. myconn.Close();
  25. set.Clear();

总结

以上所述是小编给大家介绍的ASP.NET实现图书管理系统的步骤,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对我们网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!

分享到:

相关信息

系统教程栏目

栏目热门教程

人气教程排行

站长推荐

热门系统下载