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

.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_Default2 : System.Web.UI.Page
  14. {
  15.     protected void Page_Load(object sender, EventArgs e)
  16.     {
  17.         if (!IsPostBack)
  18.         {
  19.             BindData();
  20.         }
  21.     }
  22.     void BindData()
  23.     {
  24.         string userID = Session["userID"].ToString();
  25.         DataSet dsBorrowBook = new DataSet();
  26.         Users  user=new Users ();
  27.         dsBorrowBook = user.GetBorrowBook(userID);
  28.         gvBorrowBookList.DataSource = dsBorrowBook;
  29.         gvBorrowBookList.DataBind();
  30.     }
  31.     protected void gvBorrowBookList_RowDataBound(object sender, GridViewRowEventArgs e)
  32.     {
  33.         if(e.Row .RowType ==DataControlRowType .DataRow )
  34.         {
  35.             ((Label)e.Row.Cells[2].FindControl("lblEndDate")).Text = (Convert.ToDateTime(e.Row.Cells[1].Text).AddDays(30)).ToString();
  36.         } 
  37.     }
  38. }