using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using CB.Framework; using CB.Data; using CB.Entity; using CB.Common; namespace CB.Admin.Plugins.TrendTool { public partial class TrendToolListItemConfig : AdminPage { protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { LoadData(); } } private void LoadData() { int ConfigId = WRequest.GetInt("ConfigID", 0); TrendToolItemConfigInfo entity = new TrendToolItemConfigInfo(); entity.ConfigID = ConfigId; IList lists = new List(); lists = TrendToolItemConfigService.GetToolItemConfig(entity); repeaterList.DataSource = lists; repeaterList.DataBind(); } protected void btnUpdate_Click(object sender, EventArgs e) { } protected void repeaterList_ItemCommand(object source, RepeaterCommandEventArgs e) { } } }