123456789101112131415161718192021222324252627282930313233343536373839404142 |
- 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<TrendToolItemConfigInfo> lists = new List<TrendToolItemConfigInfo>();
- 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)
- {
- }
- }
- }
|