找回密码
 会员注册
查看: 134|回复: 0

ASP.NET图书管理系统简单实现步骤

[复制链接]

250

主题

1

回帖

819

积分

管理员

积分
819
发表于 2024-2-29 08:52:54 | 显示全部楼层 |阅读模式

一、数据库添加

1.用户信息

用户信息表
2.图书信息表
图书信息表
3.图书借阅信息表
图书借阅表

二、版本页面

vs2010+sqlserver2008

页面

数据库

三、实现功能

  1. 1. 用户注册登录
  2. 2. 两种身份:管理员和读者
  3. 3. 读者能够注册自己的账号和密码还有填写自己的个人信息
  4. 4. 读者根据自己需求的借阅和归还图书
  5. 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. 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"]+"'";
  8. // 创建字符串对象
  9. mycom = new SqlCommand(strsql1, myconn);
  10. mycom.ExecuteNonQuery();
  11. //关闭数据库
  12. myconn.Close();
  13. Response.Write("<script>alert('添加成功!!')</script>");
  14. Response.Redirect("denglu.aspx");
  15. }
  16. catch (Exception ex)
  17. {
  18. Response.Write("<script>alert('添加失败!!')</script>"+ex.Message.ToString());
  19. }
  20. }
复制代码

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. catch (Exception ex)
  24. {
  25. Response.Write("<script>alert('登录失败!!')</script>");
  26. }
复制代码

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的人有所帮助,有需要直接加我:1076396021 (不白给) 有任何问题都可以问我,给调试 感谢大家的阅读和支持,能给你们带来帮助也是我成长的一步
直接加我


来源:https://blog.csdn.net/qq_44032411/article/details/85810954
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?会员注册

×
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 会员注册

本版积分规则

QQ|手机版|心飞设计-版权所有:微度网络信息技术服务中心 ( 鲁ICP备17032091号-12 )|网站地图

GMT+8, 2024-12-26 11:47 , Processed in 0.642150 second(s), 27 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表