91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ASP.NET如何實現圖書管理系統

發布時間:2021-03-08 14:33:32 來源:億速云 閱讀:185 作者:TREX 欄目:開發技術

本篇內容主要講解“ASP.NET如何實現圖書管理系統”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“ASP.NET如何實現圖書管理系統”吧!

一、數據庫添加

1.用戶信息

ASP.NET如何實現圖書管理系統

2.圖書信息表

ASP.NET如何實現圖書管理系統

3.圖書借閱信息表

ASP.NET如何實現圖書管理系統

二、版本頁面

vs2010+sqlserver2008

ASP.NET如何實現圖書管理系統 ASP.NET如何實現圖書管理系統

三、實現功能

1. 用戶注冊登錄
2. 兩種身份:管理員和讀者
3. 讀者能夠注冊自己的賬號和密碼還有填寫自己的個人信息
4. 讀者根據自己需求的借閱和歸還圖書5. 管理員可以增、減、查、改等圖書信息,修改用戶信息待完善

四、主要頁面展示

1.登錄頁面 ASP.NET如何實現圖書管理系統2.用戶注冊 ASP.NET如何實現圖書管理系統3.個人信息表 ASP.NET如何實現圖書管理系統4.用戶歸還圖書

ASP.NET如何實現圖書管理系統5.用戶借閱書籍 ASP.NET如何實現圖書管理系統6.用戶檢索書籍 ASP.NET如何實現圖書管理系統 7.管理員頁面 ASP.NET如何實現圖書管理系統

五、簡單代碼

1.注冊頁面(內容判斷不在內)

try
 {
  //賦予sql字符串數據
  string strsql1 = "insert into yhxx (zh,mima) values ('" + Tet_zh.Text + "','" + Tet_mima.Text + "')";
  //創建字符串對象
  mycom = new SqlCommand(strsql1, myconn);
  mycom.ExecuteNonQuery();
  //關閉數據庫
  myconn.Close();
  Response.Write("<script>alert('添加成功!!')</script>");
  //保存賬號
  //str = Tet_zh.Text;
  //保存用戶名
  Application["name"] = Tet_zh.Text;
  //如果成功了成功轉入
  Response.Redirect("Useradd.aspx");
 }
 catch (Exception ex)
 {
  Response.Write("<script>alert('用戶已存在!!')</script>");
 }

2.個人信息頁面(內容判斷不在內)

protected void tianjia()
 {
 //添加用戶信息
 try
 {
  //賦予sql字符串數據
  
  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"]+"'";
  // 創建字符串對象
  mycom = new SqlCommand(strsql1, myconn);
  mycom.ExecuteNonQuery();
  //關閉數據庫
  myconn.Close();
  Response.Write("<script>alert('添加成功!!')</script>");
  Response.Redirect("denglu.aspx");
 }
 catch (Exception ex)
 {
  Response.Write("<script>alert('添加失敗!!')</script>"+ex.Message.ToString());
 }
 }

3.登錄頁面(內容判斷不在內)

 //普通用戶登錄,管理員登錄雷同
 try
 {
  string sql = "select * from yhxx where zh='"+Tet_zh.Text+"' and mima='"+Tet_mm.Text+"' and yhlb='"+tet_dz.Text+"'";
  //創建命令對象
  SqlCommand com = new SqlCommand(sql,myconn);
  //創建讀取對象
  SqlDataReader dr = com.ExecuteReader();
  //成功彈出提示框
  //MessageBox.Show("讀取成功!!");
  if (dr.Read())
  {
  dr.Close();
  myconn.Close();
  Application["name1"] = Tet_zh.Text;
  Response.Redirect("index.aspx");
  }
  else
  {
  Response.Write("<script>alert('用戶名或密碼有誤!!')</script>");
  }

 }
 catch (Exception ex)
 {
  Response.Write("<script>alert('登錄失敗!!')</script>");
 }

4.圖書檢索

try
 {
  //打開數據庫
  myconn.Open();
 }
 catch (Exception ex)
 {
  Response.Write("<script>alert('數據庫打開失敗')</script>");
 }
 try
 {
  //創建數據字符串
  if (tet_name.Text == "")
  {
  Response.Write("<script>alert('名稱不能為空!')</script>");
  }
  else
  {
  string strsql3 = "select BookID as 圖書編號,BookName as 圖書名稱,"
    + "Booklb as 圖書類別,Bookzz as 圖書作者,Booklr as 圖書內容,"
    + "Bookfm as 圖書封面,Bookjg as 圖書價格,Bookzt as 圖書借閱狀態 "
    + " from Bookxx where BookName='" + tet_name.Text + "'";
  mycom = new SqlCommand(strsql3, myconn);
  //打開數據庫
  //myconn.Open();
  //
  myread = mycom.ExecuteReader();
  GridView1.DataSource = myread;
  GridView1.DataBind();
  GridView1.Visible = true;
  //關閉數據
  myread.Close();
  myconn.Close();
  }
 }
 catch (Exception ex)
 {
  Response.Write("<script>alert('查詢失敗!')</script>" + ex.Message.ToString());
 }

5.圖書借閱

1.先添加圖書
 if (myread.Read())
 {
  if (tet_zt.Text == "0")
  {
  //添加借閱信息表
  myread.Close();
  string strsql5 = "insert into Bookjyxx (ISBookID,ISBookname,ISBookzt,ISname,ISid) " +
  " values (" + Tet_Bookid.Text + ",'" + tet_Name.Text + "'," + tet_zt.Text + ",'" + Tet_xm.Text + "'," + Tet_ID.Text + ")";
  mycom = new SqlCommand(strsql5, myconn);
  mycom.ExecuteNonQuery();
  //關閉
  myconn.Close();
  myread.Close();
 //////////////////////////////////////
  xiugai();
  chaxun();
  }
  if (tet_zt.Text == "1")
  {
  Response.Write("<script>alert('該書正在借閱中')</script>");
  chaxun();
  }
 2.再分別修改借閱狀態
  //創建
 //先修改圖書表狀態信息
 string strsql7 = "update Bookxx set Bookzt='1' where BookID='" + Tet_Bookid.Text + "'";
 mycom = new SqlCommand(strsql7, myconn);
 myconn.Close();
 myconn.Open();
 mycom.ExecuteNonQuery();
 //再修改借閱狀態表信息
 string strsql8 = "update Bookjyxx set ISBookzt='1' where ISBookID='" + Tet_Bookid.Text + "'";
 mycom = new SqlCommand(strsql8, myconn);
 mycom.ExecuteNonQuery();
 Response.Write("<script>alert('借閱成功!')</script>");
 //關閉
 myconn.Close();

6.圖書歸還

//刪除他的借閱圖書信息
 string strsql3="delete from bookjyxx where ISid='"+Tet_id.Text+"'";
 mycom = new SqlCommand(strsql3, myconn);
 myconn.Open();
 mycom.ExecuteNonQuery();
 //////////////////////////////
 //刷新信息
 //查詢信息
 string strsql4= "select ISname as 借閱者,ISid as 借閱證號碼,ISBookID as 借閱書籍編號,"
  + "ISBookname as 借閱數據名稱,ISBookzt as 借閱狀態,ISdate as借閱日期 from Bookjyxx where ISid='" + Tet_id.Text + "'";
 mydata = new SqlDataAdapter(strsql4, myconn);
 DataSet set = new DataSet();
 mydata.Fill(set);
 GridView1.DataSource = set.Tables[0];
 GridView1.DataBind();
 GridView1.Visible = true;
 //修改狀態
 //先修改圖書表狀態信息
 string strsql7 = "update Bookxx set Bookzt='0' where BookID='" +tet_Bookid.Text+ "'";
 mycom = new SqlCommand(strsql7, myconn);
 mycom.ExecuteNonQuery();
 Response.Write("<script>alert('歸還成功!')</script>");
 //關閉
 myconn.Close();
 set.Clear();

總結

到此,相信大家對“ASP.NET如何實現圖書管理系統”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

霍城县| 阿巴嘎旗| 永兴县| 广南县| 田林县| 湖州市| 抚顺县| 永顺县| 大名县| 桂林市| 沧州市| 将乐县| 泸西县| 肇东市| 潢川县| 延吉市| 杂多县| 隆子县| 宁晋县| 南投县| 缙云县| 河池市| 东台市| 建平县| 富锦市| 杭锦旗| 左权县| 祁阳县| 大丰市| 洮南市| 宁夏| 海盐县| 莆田市| 西藏| 西平县| 永年县| 蓝田县| 福安市| 南江县| 酉阳| 通辽市|