资源简介

第1章 物流信息发布平台前台 3 1.1 会员登录 3 1.1.1 注册会员及登录 3 1.2 查看物流信息 4 1.3 发布货源 4 1.4 货源信息 4 第2章 物流信息发布平台后台管理 6 2.1 信息管理 6 2.1.1 货源信息管理 6 2.2 发布信息 7 2.3 会员管理 7 2.4 系统管理 7

资源截图

代码片段和文件信息

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 Mnage_Cargo_list : System.Web.UI.Page
{
    protected void Page_Load(object sender EventArgs e)
    {
        if (!this.IsPostBack)
        {
            this.bind();
        }
    }
    public void bind()
    {
        SqlConnection strcon = new SqlConnection(System.Configuration.ConfigurationManager.AppSettings[“strcon“]);
        strcon.Open();
        SqlDataAdapter sda = new SqlDataAdapter(“select * from tb_Cargo where Auditing=1 order by id desc“ strcon);
        DataSet ds = new DataSet();
        sda.Fill(ds“tb_Cargo“);
        this.GridView1.DataSource = ds.Tables[“tb_Cargo“];
        this.GridView1.DataBind();
    }
    protected void GridView1_PageIndexChanging(object sender GridViewPageEventArgs e)
    {
        this.GridView1.PageIndex = e.NewPageIndex;
        this.bind();
    }

}

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

     文件       1393  2007-05-23 08:53  Properties\AssemblyInfo.cs

     目录          0  2007-05-23 08:53  Properties

     文件     170496  2007-05-23 08:51  《物流信息发布平台》说明书.doc

     文件       4010  2007-05-23 09:09  Cargo_list.aspx

     文件       1165  2007-05-23 09:08  Cargo_list.aspx.cs

     文件       1663  2007-05-23 09:09  Cargo_list.aspx.designer.cs

     文件       5625  2007-05-23 08:55  Cargo_open.aspx

     文件       1608  2006-11-24 10:54  Cargo_open.aspx.cs

     文件       4303  2007-05-23 08:55  Cargo_open.aspx.designer.cs

     文件       7461  2007-05-23 09:12  Cargo_send.aspx

     文件       2059  2007-05-23 09:12  Cargo_send.aspx.cs

     文件       9940  2007-05-23 09:12  Cargo_send.aspx.designer.cs

     文件       2773  2007-05-23 08:55  Chauffeur_list.aspx

     文件       1178  2006-11-24 10:54  Chauffeur_list.aspx.cs

     文件       1659  2007-05-23 08:55  Chauffeur_list.aspx.designer.cs

     文件       5680  2007-05-23 08:55  Chauffeur_open.aspx

     文件       1681  2007-05-23 09:24  Chauffeur_open.aspx.cs

     文件       4594  2007-05-23 08:55  Chauffeur_open.aspx.designer.cs

     文件       7331  2007-05-23 08:55  Chauffeur_send.aspx

     文件       1980  2006-11-24 10:54  Chauffeur_send.aspx.cs

     文件       8967  2007-05-23 09:12  Chauffeur_send.aspx.designer.cs

     文件       3658  2007-05-23 08:55  Contact.aspx

     文件        408  2006-11-24 10:54  Contact.aspx.cs

     文件       1638  2007-05-23 08:55  Contact.aspx.designer.cs

     文件      15230  2007-05-23 09:24  Default.aspx

     文件       1589  2007-05-23 09:24  Default.aspx.cs

     文件       7358  2007-05-23 09:18  Default.aspx.designer.cs

     文件         30  2006-11-24 10:54  deletelog.txt

     文件        598  2007-05-23 09:26  foot.ascx

     文件        592  2007-05-23 09:27  foot.ascx.cs

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

评论

共有 条评论