using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using CoreSavingLibrary; using System.Data; namespace Saving.Applications.trading.ws_td_sale_ctrl { public partial class DsSummary : DataSourceFormView { public DataSet1.STSTOCKSLIPDataTable DATA { get; private set; } public void InitdsSummary(PageWeb pw) { css1.Visible = false; DataSet1 ds = new DataSet1(); this.DATA = ds.STSTOCKSLIP; this.InitDataSource(pw, FormViewSummary, this.DATA, "dsSummary"); this.EventItemChanged = "OnDsSummaryItemChanged"; this.EventClicked = "OnDsSummaryClicked"; this.Button.Add("b_inserrowdet"); this.Register(); } } }