Skip to content
StorageOrder.aspx.cs 612 B
Newer Older
Jack Dan's avatar
Jack Dan committed
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;

public partial class StorageOrder : MyPage
{
    protected void Page_Load(object sender, EventArgs e)
    {
        //DataTable dtGroup = Sdbo.ExecuteDataTable("SELECT GroupID,GroupName FROM Permission.GroupInfo WHERE ParentID='{0}' ORDER BY DispSeq", GlobalDefine.SupplierGroupID);
        //lstSupplier.DataTextField = "GroupName";
        //lstSupplier.DataValueField = "GroupID";
        //lstSupplier.DataSource = dtGroup;
        //lstSupplier.DataBind();
    }
}