• 大小: 649KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-09
  • 语言: C#
  • 标签: 后台  管理  asp  asp.net  

资源简介

Asp.net企业网站管理系统源码2.0版(精美实用) 漂亮的企业网站。NET2.0出来了, 本次升级修改如下: 1、优化了3层结构。 2、优化了后台管理代码,增强了安全性能。 3、增加了系统名称及关键字管理。 4、增加了系统错误日志记录,自动生成Systemlog.log日志文件。 备注:本系统采用ASP.NET 2.O+ACCESS开发,请调试的朋友安装.NET2.0运行环境! 网站内容 网站栏目包括 首页|企业简介|新闻中心|产品展示|公司展示|销售网络|联系我们|客户系统|人才管理|客户留言 后台模块有:常规管理 企业简介 | 联系我们 链接管理 | 用户管理 投票管理 | 看留言 系统设置 | 公告管理 添加公告 | 公告列表 新闻管理 添加新闻 | 新闻列表 产品管理 添加产品 | 产品列表 公司证书 添加证书 | 证书列表 客户系统 添加客户 | 客户列表 工程业绩 添加业绩 |业绩列表 数据库操作采用的是AccessHelper(OledbHelper),网页编辑器为FreeTextBox 管理地址:http://xxx/Admin/Admin_Login.aspx 管理帐号:51aspx 管理密码:51aspx

资源截图

代码片段和文件信息

using System;
using System.Data;
using System.Data.OleDb;
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;

public partial class Cases : System.Web.UI.Page
{
    public string titlep;
    public string Descriptionp;
    public string Keywordsp;
    OleDbConnection MyConn;
    int PageSize RecordCount PageCount CurrentPage;
    protected void Page_Load(object sender EventArgs e)
    {

        //titledescon
        GetContent drt = new GetContent();
        OleDbDataReader drf = drt.GetTDC();
        while (drf.Read())
        {
            this.titlep = drf[“title“].ToString();
            this.Descriptionp = drf[“Description“].ToString();
            this.Keywordsp = drf[“Keywords“].ToString();
        }
        drf.Close();
        //设定PageSize 
        PageSize = 12;
        //连接语句 
        MyConn = DB.CreateDB();
        MyConn.Open();
        //第一次请求执行 
        if (!Page.IsPostBack)
        {
            ListBind();
            CurrentPage = 0;
            ViewState[“PageIndex“] = 0;

            //计算总共有多少记录 
            RecordCount = CalculateRecord();
            //
            lblRecordCount.Text = RecordCount.ToString();

            //计算总共有多少页 
            if (RecordCount % PageSize == 0)
            {
                PageCount = RecordCount / PageSize;
            }
            else
            {
                PageCount = RecordCount / PageSize + 1;
            }
            lblPageCount.Text = PageCount.ToString();
            ViewState[“PageCount“] = PageCount;
        }
    }


    //计算总共有多少条记录 
    public int CalculateRecord()
    {
        int intCount;
        string strCount = “select count(*) as co from product where pro_name=‘cases‘“;
        OleDbCommand MyComm = new OleDbCommand(strCount MyConn);
        OleDbDataReader dr = MyComm.ExecuteReader();
        if (dr.Read())
        {
            intCount = Int32.Parse(dr[“co“].ToString());
        }
        else
        {
            intCount = 0;
        }
        dr.Close();
        return intCount;
    }


    ICollection CreateSource()
    {

        int StartIndex;

        //设定导入的起终地址 
        StartIndex = CurrentPage * PageSize;
        string strSel = “select * from product where pro_name=‘cases‘“;
        DataSet ds = new DataSet();

        OleDbDataAdapter MyAdapter = new OleDbDataAdapter(strSel MyConn);
        MyAdapter.Fill(ds StartIndex PageSize “pro_name“);
        return ds.Tables[“pro_name“].DefaultView;
    }



    public void ListBind()
    {
        DataList1.DataSource = CreateSource();
        DataList1.DataBind();

        lbnNextPage.Enabled = true;
        lbnPrevPage.Enabled = true;
        if (CurrentPage == (PageCount - 1)) lbnNextPage.Enabled = false;

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

     文件      20480  2006-09-19 09:13  OleDbHelper\bin\Debug\OleDbHelper.dll

     文件      19968  2006-09-19 09:13  OleDbHelper\bin\Debug\OleDbHelper.pdb

     目录          0  2008-01-09 11:43  OleDbHelper\bin\Debug

     目录          0  2008-01-09 11:43  OleDbHelper\bin

     文件      20480  2006-09-19 09:13  OleDbHelper\obj\Debug\OleDbHelper.dll

     文件      19968  2006-09-19 09:13  OleDbHelper\obj\Debug\OleDbHelper.pdb

     目录          0  2008-01-09 11:43  OleDbHelper\obj\Debug

     文件        150  2006-09-19 20:33  OleDbHelper\obj\OleDbHelper.csproj.FileList.txt

     目录          0  2008-01-09 11:43  OleDbHelper\obj

     文件       3647  2008-01-09 12:01  OleDbHelper\OleDbHelper.cs

     文件       2138  2006-09-17 09:14  OleDbHelper\OleDbHelper.csproj

     文件       1341  2006-09-17 09:06  OleDbHelper\Properties\AssemblyInfo.cs

     目录          0  2008-01-09 11:43  OleDbHelper\Properties

     文件       1484  2006-09-17 09:28  OleDbHelper\SystemError.cs

     文件       1477  2006-09-19 09:12  OleDbHelper\SystemTools.cs

     目录          0  2008-01-09 11:43  OleDbHelper

     文件       2503  2008-01-09 12:02  51aspx源码必读.txt

     文件       6776  2006-09-18 08:07  Cases.aspx

     文件       3847  2006-09-18 11:08  Cases.aspx.cs

     文件       2736  2006-09-18 08:08  Cases_More.aspx

     文件       2518  2006-09-19 16:56  Cases_More.aspx.cs

     文件       2605  2006-09-18 08:07  Contact.aspx

     文件       1123  2006-09-18 11:08  Contact.aspx.cs

     文件       4157  2006-09-18 08:07  Customer.aspx

     文件       1489  2006-09-18 11:08  Customer.aspx.cs

     文件       2739  2006-09-18 08:07  Customer_More.aspx

     文件       2586  2008-01-09 12:00  Customer_More.aspx.cs

     文件        445  2006-09-22 10:00  Default2.aspx

     文件        409  2006-09-22 10:00  Default2.aspx.cs

     文件       8613  2006-09-22 10:19  Default.aspx

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

评论

共有 条评论