• 大小: 2.88MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-09
  • 语言: C#
  • 标签: asp.net  c#  网页设计  

资源简介

基于asp.net的图书管理系统程序加文档完美运行,运行不了打我好不好,仅供参考

资源截图

代码片段和文件信息

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class bookBorrow : System.Web.UI.Page
{
    static int isSum = 0;
    SqlHelper data = new SqlHelper();
    protected void Page_Load(object sender EventArgs e)
    {
        if (!IsPostBack)
        {
            if (Session[“userName“] == null)
            {
                Alert.AlertAndRedirect(“对不起您还没有登录“ “Default.aspx“);
            }
            else
            {
                string readerBarCode = Session[“readerBarCode“].ToString();               //获取读者条形码
                string BSql = “select count(*) from bookBorrow where readerBarCode=‘“ + Session[“readerBarCode“].ToString() + “‘ and isReturn=‘0‘“;
                dataOperate db = new dataOperate();
                TextBox1.Text = data.ReturnSql(BSql);
                bindReaderInfo();     //调用自定义方法显示读者信息
            }
        }
    }
 
    //自定义方法显示读者信息,
    public void bindReaderInfo()
    {
        string readerBarCode = Session[“readerBarCode“].ToString();               //获取读者条形码
        //创建SQL语句在读者信息表中查询符合读者条形码条件的记录
        string readerSql = ““;
        readerSql = “select * from reader where readerBarCode=‘“ + readerBarCode + “‘“;
        SqlDataReader sdr = dataOperate.getRow(readerSql);          //获取该读者详细信息
        if (sdr.Read())
        {                                                 //读取一条记录
            txtReaderName.Text = sdr[“username“].ToString();          //显示读者姓名
            this.Hidden1.Value = sdr[“IsUse“].ToString();
            TextBox2.Text = sdr[“MoenyInfo“].ToString();  

            txtCertificate.Text = sdr[“certificate“].ToString();        //显示证件号
            //创建SQL语句在读者类型表中查询符合读者类型编号的记录
            string readerTypeSql = “select * from readerType where type=‘“ + sdr[“readerType“].ToString() + “‘“;
            SqlDataReader typeSdr = dataOperate.getRow(readerTypeSql);  //获取读者类型信息
            typeSdr.Read();                                             //读取一条记录
            txtReaderType.Text = typeSdr[“type“].ToString();            //显示读者类型
            int borrowNum = Convert.ToInt32(typeSdr[“num“]);            //获取可借图书总数

        
            int alreadyDate = Convert.ToInt32(typeSdr[“Date“]);
            //创建SQL语句在图书借阅表中查询符合读者条形码条件的读者借了几本图书(图书未还的)
            string selSql = “select count(*) from bookBorrow where readerBarCode=‘“ + readerBarCode + “‘ and isReturn =‘0‘“;
            int alreadyNum = dataOperate.seleSQL(selSql);               //获取图书已借数
            txtNum.Text = Convert.ToString(borrowNum - alreadyNum);     //显示可以借阅数

            TxtDate.Text = Convert.ToString(alreadyDate);  //显示可以天数
            isSum = 1;
        }
        else
            RegisterStartupscript(““ “

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       2660  2013-11-28 23:19  TSGLWeb\Admin\addBookcase.aspx

     文件       2076  2013-11-28 23:09  TSGLWeb\Admin\addBookcase.aspx.cs

     文件      16789  2013-11-29 08:59  TSGLWeb\Admin\addBookInfo.aspx

     文件       6333  2013-11-28 23:09  TSGLWeb\Admin\addBookInfo.aspx.cs

     文件       2660  2013-11-28 23:19  TSGLWeb\Admin\addBookType.aspx

     文件       2058  2013-11-28 23:09  TSGLWeb\Admin\addBookType.aspx.cs

     文件       3794  2013-11-29 08:48  TSGLWeb\Admin\AddMoney.aspx

     文件       1638  2013-11-29 08:48  TSGLWeb\Admin\AddMoney.aspx.cs

     文件       2661  2013-11-28 23:19  TSGLWeb\Admin\Addpublishing.aspx

     文件       2061  2013-11-28 23:09  TSGLWeb\Admin\Addpublishing.aspx.cs

     文件       7963  2013-11-29 08:40  TSGLWeb\Admin\addReaderInfo.aspx

     文件       3768  2013-11-28 23:09  TSGLWeb\Admin\addReaderInfo.aspx.cs

     文件       3878  2013-11-28 23:19  TSGLWeb\Admin\addReaderType.aspx

     文件       2193  2013-11-28 23:09  TSGLWeb\Admin\addReaderType.aspx.cs

     文件       4070  2013-11-29 08:45  TSGLWeb\Admin\addUser.aspx

     文件       2284  2013-11-28 23:09  TSGLWeb\Admin\addUser.aspx.cs

     文件       4435  2013-11-28 23:19  TSGLWeb\Admin\bookBorrowSearch.aspx

     文件       1467  2013-11-28 23:09  TSGLWeb\Admin\bookBorrowSearch.aspx.cs

     文件       3349  2013-11-28 23:19  TSGLWeb\Admin\bookcaseManage.aspx

     文件       1759  2013-11-28 23:09  TSGLWeb\Admin\bookcaseManage.aspx.cs

     文件       3766  2013-11-28 23:19  TSGLWeb\Admin\bookInfoManage.aspx

     文件       3134  2013-11-28 23:09  TSGLWeb\Admin\bookInfoManage.aspx.cs

     文件       4628  2013-11-28 23:19  TSGLWeb\Admin\bookReturnSearch.aspx

     文件       1466  2013-11-28 23:09  TSGLWeb\Admin\bookReturnSearch.aspx.cs

     文件       3146  2013-11-28 23:19  TSGLWeb\Admin\bookType.aspx

     文件       1786  2013-11-28 23:09  TSGLWeb\Admin\bookType.aspx.cs

     文件        445  2013-11-28 23:19  TSGLWeb\Admin\entry.aspx

     文件        456  2013-11-28 23:09  TSGLWeb\Admin\entry.aspx.cs

     文件       4588  2013-11-28 23:19  TSGLWeb\Admin\FaKuanInque.aspx

     文件       1429  2013-11-28 23:09  TSGLWeb\Admin\FaKuanInque.aspx.cs

............此处省略1089个文件信息

评论

共有 条评论