好的,我找到了在ListView中呈现转发器的方法,我不知道是否可以粘贴整个代码,因为它很长。结果html如下:
-
时间1
[备注:以下是ListView内的转发器]
场景组名称1组名称2
s1g1混凝土g12混凝土1
s2G1conc2G2conc2型
S3g1混凝土12混凝土3
-
时间2
[备注:以下是ListView内的转发器]
场景组名称1组名称2
s1g1混凝土g12混凝土1
s2G1conc2G2conc2型
S3g1混凝土12混凝土3
-
时间3
[备注:以下是ListView内的转发器]
场景组名称1组名称2
s1g1混凝土g12混凝土1
s2G1conc2G2conc2型
S3g1混凝土12混凝土3
最困难的是,组的数量可以不同
我的ASPX页面如下:
…嗯…论坛我不能用逐字逐句的代码,预块对某些字符不起作用。
KeyValuePair<string, List<scenarioItem>> myData = (KeyValuePair<string, List<scenarioItem>>)(((System.Web.UI.WebControls.ListViewDataItem)(e.Item)).DataItem);
Repeater repeater = (Repeater)e.Item.FindControl("childData");
repeater.HeaderTemplate = new MyTemplate(ListItemType.Header);
repeater.ItemTemplate = new MyTemplate(ListItemType.Item);
repeater.AlternatingItemTemplate =
new MyTemplate(ListItemType.AlternatingItem);
repeater.FooterTemplate = new MyTemplate(ListItemType.Footer);
repeater.DataSource = myData.Value;
repeater.DataBind();
public class MyTemplate : System.Web.UI.ITemplate
{
system.web.ui.webcontrols.listemtype模板类型;
公共MyTemplate(System.Web.UI.WebControls.ListItemType类型)
{
templateType=类型;
}
static void Item_DataBinding(object sender, System.EventArgs e)
{
PlaceHolder ph = (PlaceHolder)sender;
RepeaterItem ri = (RepeaterItem)ph.NamingContainer;
scenarioItem myDataItem = (scenarioItem)ri.DataItem;
if (ri.ItemIndex == 0) {
ph.Controls.Add(new LiteralControl("<tr><td>ScenarioName</td>"));
foreach (recGroupConcItem concItem in myDataItem.mGroupConcList)
{
ph.Controls.Add(new LiteralControl("<td>" + concItem.groupName + @"</td>"));
}
ph.Controls.Add(new LiteralControl("</tr>"));
}
ph.Controls.Add(new LiteralControl("<tr><td>"+myDataItem.scenarioName+@"</td>"));
foreach (recGroupConcItem concItem in myDataItem.mGroupConcList) {
ph.Controls.Add(new LiteralControl("<td>" + concItem.groupConc.ToString() + @"</td>"));
}
ph.Controls.Add(new LiteralControl("</tr>"));
}
static void ItemAlt_DataBinding(object sender, System.EventArgs e)
{
PlaceHolder ph = (PlaceHolder)sender;
RepeaterItem ri = (RepeaterItem)ph.NamingContainer;
scenarioItem myDataItem = (scenarioItem)ri.DataItem;
ph.Controls.Add(new LiteralControl("<tr bgcolor=\"lightblue\"><td>" + myDataItem.scenarioName + @"</td>"));
foreach (recGroupConcItem concItem in myDataItem.mGroupConcList)
{
ph.Controls.Add(new LiteralControl("<td>" + concItem.groupConc.ToString() + @"</td>"));
}
ph.Controls.Add(new LiteralControl("</tr>"));
}
static void ItemHeader_DataBinding(object sender, System.EventArgs e)
{
PlaceHolder ph = (PlaceHolder)sender;
RepeaterItem ri = (RepeaterItem)ph.NamingContainer;
scenarioItem myDataItem = (scenarioItem)ri.DataItem;
ph.Controls.Add(new LiteralControl("<tr><td>ScenarioName</td>"));
foreach (recGroupConcItem concItem in myDataItem.mGroupConcList)
{
ph.Controls.Add(new LiteralControl("<td>" + concItem.groupName + @"</td>"));
}
ph.Controls.Add(new LiteralControl("</tr>"));
}
public void InstantiateIn(System.Web.UI.Control container)
{
PlaceHolder ph = new PlaceHolder();
Label item1 = new Label();
Label item2 = new Label();
item1.ID = "item1";
item2.ID = "item2";
switch (templateType)
{
case ListItemType.Header:
ph.Controls.Add(new LiteralControl("<table border=\"1\">"));
break;
case ListItemType.Item:
ph.DataBinding += new EventHandler(Item_DataBinding);
break;
case ListItemType.AlternatingItem:
ph.DataBinding += new EventHandler(ItemAlt_DataBinding);
break;
case ListItemType.Footer:
ph.Controls.Add(new LiteralControl("</table>"));
break;
}
container.Controls.Add(ph);
}
}