SearchBook1.aspx.cs
上传用户:gooyliu
上传日期:2018-09-29
资源大小:5816k
文件大小:2k
源码类别:

.net编程

开发平台:

C#

  1. using System;
  2. using System.Data;
  3. using System.Configuration;
  4. using System.Collections;
  5. using System.Web;
  6. using System.Web.Security;
  7. using System.Web.UI;
  8. using System.Web.UI.WebControls;
  9. using System.Web.UI.WebControls.WebParts;
  10. using System.Web.UI.HtmlControls;
  11. using System.Data.SqlClient;
  12. using BusinessLogicLayer;
  13. public partial class Reader_SearchBook : System.Web.UI.Page
  14. {
  15.     protected void Page_Load(object sender, EventArgs e)
  16.     {
  17.         if (!IsPostBack)
  18.         {
  19.             BindBookType();
  20.         }
  21.     }
  22.     BLLBook bllBook = new BLLBook();
  23.    void  BindBookType()
  24.     {
  25.        bllBookType BBLbt = new bllBookType();
  26.         ArrayList arrBT = new ArrayList();
  27.         DataSet  ds=BBLbt.GetBookType ();
  28.         ListItem li = new ListItem("全部", "0");
  29.         ddlBookType.Items.Add(li);
  30.         DataTable dt = ds.Tables[0]; 
  31.        
  32.       
  33.         for (int i = 0; i <dt.Rows.Count; i++)
  34.         {
  35.             ListItem lis = new ListItem();
  36.             lis.Value =dt.Rows [i][0].ToString ();
  37.             lis.Text =dt.Rows[i][1].ToString ();
  38.             ddlBookType.Items.Add(lis);
  39.         }
  40.        
  41.         ddlBookType.SelectedIndex =0;
  42.         //ddlBookType.DataBind();
  43.         
  44.       
  45.     
  46.     }
  47.     protected void btnSearch_Click(object sender, EventArgs e)
  48.     {
  49.         int typeID =Convert.ToInt16 (ddlBookType.SelectedValue);
  50.         string queryByCol = ddlQueryType.SelectedItem.Value.ToString().Trim();
  51.         string content = txtContent.Text.ToString().Trim();
  52.         
  53.         DataSet ds=bllBook.SearchBook(typeID, queryByCol, content);
  54.         BookList.DataSource = ds;
  55.          BookList.DataBind();   
  56.     }
  57.     protected void BookList_RowDataBound(object sender, GridViewRowEventArgs e)
  58.     {
  59.         if (e.Row.RowType == DataControlRowType.DataRow)
  60.         {
  61.             string str = e.Row.Cells[4].Text;
  62.             switch (str)
  63.             {
  64.                 case "0":
  65.                     e.Row.Cells[4].Text = "已借出";
  66.                     break;
  67.                 case "1":
  68.                     e.Row.Cells[4].Text = "在架上";
  69.                     break;
  70.                 case "3":
  71.                     e.Row.Cells[4].Text = "维护中";
  72.                     break;
  73.             }
  74.         }
  75.     }
  76. }