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

.net编程

开发平台:

C#

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