• 大小: 2.29M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: ExtJS  js  

资源简介


VS版本升级为VS2010,框架版本升级为3.5.

2、修复了System.Web.Extensions.dll引用的问题,确保程序只需要修改连接字符串,就能运行。

一、源码描述
    这是一款Ext酒店管理系统,采用了Extjs2.0技术实现UI展示,
    该系统为北大青鸟(重庆足下)Y2项目,界面比较炫目,比较适合
    学习交流使用,感兴趣的欢迎下载哦。
二、功能介绍
    该源码具体功能如下:
    1、普通日常管理:新开房间、查询帐目信息。
    2、员工管理:添加普通员工、删除员工。
    3、房间类型管理:添加房间类型、删除房间类型、查看房间类型。
    4、客房管理:添加酒店客房、删除酒店客房、查看酒店客房。
三、注意事项
    1、后台管理员用户名密码均是:51aspx。
    2、开发环境为Visual Studio 2010,数据库为SQL Server 2005,数据库文件在DB_51aspx文件夹中,
    使用.net 3.5开发。
    3、默认数据库连接字符串在webconfig配置文件中修改。
    4、该源码比较适合学习交流使用。
    5、如果在IIS下配置,务必将HotelUI设置为虚拟目录。


资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using HotelDAL;

namespace HotelBLL
{
    public class IsTableBLL
    {
        IsTableDAO itd = new IsTableDAO();


        /// 
        /// 查询所有
        /// 

        /// 
        public string GetIsAll()
        {
            JSonhelper jsonhelp = new JSonhelper();
            jsonhelp.success = true;
            DataSet ds = itd.GetIsAll();
            foreach (DataRow dr in ds.Tables[0].Rows)
            {
                jsonhelp.AddItem(“IsId“ dr[“IsId“].ToString());
                jsonhelp.AddItem(“IsName“ dr[“IsName“].ToString());
                jsonhelp.ItemOk();
            }
            string str = jsonhelp.ToString();
    

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        3241  2014-09-05 15:49  51aspx源码必读.txt
     目录           0  2014-09-05 15:06  DB_51aspx\
     文件     2293760  2014-09-05 15:49  DB_51aspx\MyHotelManager.mdf
     文件      573440  2014-09-05 15:49  DB_51aspx\MyHotelManager_log.LDF
     目录           0  2014-09-05 15:19  HotelBLL\
     文件        4358  2014-09-05 15:19  HotelBLL\HotelBLL.csproj
     文件         452  2014-09-05 15:19  HotelBLL\HotelBLL.csproj.user
     文件         853  2008-08-28 21:26  HotelBLL\IsTableBLL.cs
     文件        3607  2008-08-28 21:26  HotelBLL\JSonhelper.cs
     文件        1447  2008-08-29 21:53  HotelBLL\MoneyInfoBLL.cs
     文件        2281  2008-08-30 01:41  HotelBLL\OpenRoomInfoBLL.cs
     目录           0  2014-09-05 15:06  HotelBLL\Properties\
     文件        1391  2014-09-05 15:38  HotelBLL\Properties\AssemblyInfo.cs
     文件        3291  2008-08-29 21:04  HotelBLL\RoomBLL.cs
     文件         945  2008-08-28 21:26  HotelBLL\RoomStateBLL.cs
     文件        3358  2008-08-29 21:29  HotelBLL\RoomTypeBLL.cs
     文件        2510  2008-08-28 21:26  HotelBLL\UserInfoBLL.cs
     目录           0  2008-09-01 08:48  HotelBLL\bin\
     目录           0  2014-09-05 15:19  HotelBLL\bin\Debug\
     文件       12288  2014-09-05 15:19  HotelBLL\bin\Debug\HotelBLL.dll
     文件       42496  2014-09-05 15:19  HotelBLL\bin\Debug\HotelBLL.pdb
     文件       11264  2014-09-05 15:14  HotelBLL\bin\Debug\HotelDAL.dll
     文件       40448  2014-09-05 15:14  HotelBLL\bin\Debug\HotelDAL.pdb
     文件        7680  2014-09-05 15:14  HotelBLL\bin\Debug\HotelModels.dll
     文件       34304  2014-09-05 15:14  HotelBLL\bin\Debug\HotelModels.pdb
     目录           0  2014-09-05 15:06  HotelBLL\obj\
     目录           0  2014-09-05 15:19  HotelBLL\obj\Debug\
     文件        6114  2014-09-05 15:19  HotelBLL\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     文件        1227  2014-09-05 15:19  HotelBLL\obj\Debug\HotelBLL.csproj.FileListAbsolute.txt
     文件       98725  2014-09-05 15:14  HotelBLL\obj\Debug\HotelBLL.csprojResolveAssemblyReference.cache
     文件       12288  2014-09-05 15:19  HotelBLL\obj\Debug\HotelBLL.dll
............此处省略632个文件信息

评论

共有 条评论