• 大小: 1.07MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-31
  • 语言: C#
  • 标签:

资源简介

根据小区物业内部管理的特点,可以将小区物业内部管理信息网分为前台和后台两个部分进行设计。前台主要用于用户注册和登录网站、站内链接、查询用户的相关信息以及查看站内新闻和站内公告;后台主要用于管理员对业主投诉管理、业主报修管理、反馈信息受理、物业设备维修、业主停车位管理、业主费用管理、费用催缴管理和值班员工信息等进行管理。

资源截图

代码片段和文件信息

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.OleDb;
public partial class Default2 : System.Web.UI.Page
{
    protected void Page_Load(object sender EventArgs e)
    {
       
        this.xinwenfillgv();//调用用户自定义的xinwenfillgv()方法
        this.fillgougao();//调用用户自定义的fillgougao()方法
        this.qianfeifillgv();//调用用户自定义的qianfeifillgv()方法
        
    }
    public void xinwenfillgv()            //用户自定义的方法
    {
        OleDbConnection con = DB.createDB();//调用用户自定义的DB类的createDB()的方法
        OleDbCommand cmd = new OleDbCommand();//声明一个OleDbCommand的对象并将该对象cmd实例化
        cmd.Connection = con;
        con.Open();//打开数据库连接
        OleDbDataAdapter sda = new OleDbDataAdapter(“select top 9 * from tb_xinwen order by fabushijian desc“ con);//从新闻表tb_xinwen按发布时间fabushijian的降序排序
        DataSet ds = new DataSet();//声明一个DataSet的对象并将该对象ds实例化
        sda.Fill(ds “tb_xinwen“);//将新闻表tb_xinwen填充到数据库中
        this.gvXw.DataSource = ds;
        //this.GridView2.DataKeyNames = new string[] { “title“ }; 
        this.gvXw.DataBind();//将数据绑定到GridView控件中
        for (int i = 0; i <= gvXw.Rows.Count - 1; i++)
        {
            DataRowView mydrv;  //声明一个DataRowView的对象
            string gintro;
            if (this.gvXw.PageIndex == 0)
            {
                mydrv = ds.Tables[“tb_xinwen“].DefaultView[i];
                gintro = Convert.ToString(mydrv[“title“]);
                this.gvXw.Rows[i].Cells[0].Text = SubStr(gintro 10);
            }
            else
            {
                mydrv = ds.Tables[“tb_xinwen“].DefaultView[i + (5 * gvXw.PageIndex)];
                gintro = Convert.ToString(mydrv[“title“]);
                this.gvXw.Rows[i].Cells[0].Text = SubStr(gintro 10);
            }
        }
        con.Close();//关闭数据库连接
    }
   
    public void fillgougao()
    {
        OleDbConnection con = DB.createDB();//调用用户自定义的DB类的createDB()的方法
        OleDbCommand cmd = new OleDbCommand(“ select  * from tb_zhannei“ con);
        con.Open();//打开数据库连接
        OleDbDataReader sdr = cmd.ExecuteReader(); 
        sdr.Read();//
        this.lblGgxx.Text = sdr.GetString(0);//从数据库中读取第一个数据放到Label标签中
        sdr.Close();//关闭阅读器
        con.Close();//关闭数据库连接
    }
    public void qianfeifillgv()
    {
        OleDbConnection con = DB.createDB();
        con.Open(); //打开数据库连接
        OleDbCommand cmd = new OleDbCommand();//调用用户自定义的DB类的createDB()的方法
        OleDbDataAdapter sda = new OleDbDataAdapter(“select top 10 * from tb_qianfei“ con);
        DataSet ds = new DataSet();         //声明一个DataSet的ds对象并将其实例化
        sda.Fill(ds “tb_qianfei“);
        this.gvQf.DataSource = ds;
        this.gvQf.DataBind();//将数据绑定到GridView控件中
        con.Close();//关闭数据库连接
 

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

     文件        652  2007-11-20 18:44  07\WebSite3\App_Code\DB.cs

     文件     729088  2011-03-29 10:17  07\WebSite3\App_Data\db_wygl.mdb

     文件       5299  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\CSs\default.css

     文件        602  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\html\calendar.html

     文件         95  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\html\calendarbottom.html

     文件         92  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\html\calendartop.html

     文件       2189  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\html\crystalexportdialog.htm

     文件       2707  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\html\crystalprinthost.html

     文件         84  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\calendar.gif

     文件       1410  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\crlogo.gif

     文件        617  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\export.gif

     文件        283  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\exportd.gif

     文件       1244  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\export_over.gif

     文件         78  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\First.gif

     文件         78  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\Firstd.gif

     文件       1251  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\first_over.gif

     文件        595  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\gotopage.gif

     文件        176  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\gotopaged.gif

     文件       1226  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\gotopage_over.gif

     文件        257  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\grouptree.gif

     文件        230  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\grouptreed.gif

     文件        179  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\grouptreepressed.gif

     文件       1215  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\grouptree_over.gif

     文件         79  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\Last.gif

     文件         79  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\Lastd.gif

     文件       1251  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\last_over.gif

     文件         73  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\Next.gif

     文件         73  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\Nextd.gif

     文件       1252  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\next_over.gif

     文件         73  2005-11-12 00:00  07\WebSite3\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\Prev.gif

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

评论

共有 条评论