using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using CoreSavingLibrary; namespace Saving.Applications.shrlon.ws_sl_loan_requestment_baac_ctrl { public partial class DsColl : DataSourceRepeater { public DataSet1.dsmainDataTable DATA { get; private set; } public void InitDsColl(PageWeb pw) { css1.Visible = false; DataSet1 ds = new DataSet1(); this.DATA = ds.dsmain; this.EventItemChanged = "OnDsCollItemChanged"; this.EventClicked = "OnDsCollClicked"; this.InitDataSource(pw, Repeater1, this.DATA, "dsColl"); this.Register(); } } }