AddBook1.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 Model;
  12. using BusinessLogicLayer;
  13. public partial class SysAdmin_AddBook : System.Web.UI.Page
  14. {
  15.     BLLBook bllBook = new BLLBook();   //BLLBook必须Public
  16.     protected void Page_Load(object sender, EventArgs e)
  17.     {
  18.         if (!this.IsPostBack)
  19.         {
  20.             for (int i = 2000; i < 2008; i++)
  21.             {
  22.                 ddlYear.Items.Add(i.ToString());
  23.             }
  24.             for (int i = 1; i < 13; i++)
  25.             {
  26.                 ddlMonth.Items.Add(i.ToString());
  27.             }
  28.             for (int i = 1; i < 32; i++)
  29.             {
  30.                 ddlDay.Items.Add(i.ToString());
  31.             }
  32.         }
  33.         else
  34.         { }
  35.     }
  36.     protected void imgBtnAdd_Click(object sender, ImageClickEventArgs e)
  37.     {
  38.         BookInfo bkInfo = new BookInfo();
  39.         bkInfo.BookID = txtISBN.Text.Trim();
  40.         bkInfo.BookName = txtName.Text.Trim();
  41.         bkInfo.BookIndex = txtIndex.Text.Trim();
  42.         
  43.         bkInfo.BookTypeID =Convert .ToInt16 (rblClassify.SelectedItem.Value);
  44.         bkInfo.Author = txtAuthor.Text.Trim();
  45.         bkInfo.Publish = txtPublish.Text.Trim();
  46.         bkInfo .Price =Convert .ToDouble (txtPrice .Text .Trim ());
  47.         bkInfo.PublishDate = Convert.ToDateTime(ddlYear.SelectedItem.Text + "-" + ddlMonth.SelectedItem.Text + "-" + ddlDay.SelectedItem.Text);
  48.         bkInfo .Abstrac=txtDescription .Text .Trim ();
  49.         bkInfo .Keyword =txtSubject .Text .Trim ();
  50.         bkInfo.BookStatus =1 ;
  51.         bkInfo .RegisteDate =DateTime.Now;
  52.         if (bllBook.AddBook(bkInfo))
  53.             lblMessage.Text = "Add Success!!";
  54.         else
  55.             lblMessage.Text = "Not Add!!";
  56.     }
  57. }