我对ListView的工作方式有点失落。
创建ListView后,我会根据结果集中的数据进行着色。
protected void ListView1_ItemCreated(object sender, ListViewItemEventArgs e)
{
DataRow myRow;
DataRowView myRowView;
myRowView = (DataRowView)e.Item.DataItem;
myRow = myRowView.Row;
HtmlTableRow myTR = (HtmlTableRow)e.Item.FindControl("trRow");
HtmlTableCell myTC = (HtmlTableCell)e.Item.FindControl("tdCell");
Label myCB = (Label)e.Item.FindControl("ResultLabel1");
if (myRow["Result"].ToString().Equals("true"))
myTC.Style.Value = "background-color:#00FF00;color: #000000;";
else
myTC.Style.Value = "background-color:#FF0000;color: #000000;";
}
ListView有一个寻呼机,它导致回发到ItemCreated,我再也无法到达dataRow。
有任何建议如何处理这个我可以处理回发?
更新: 我更改了代码以读取名为ResultLabel1的Label的实际值,该值为True / False,但它返回一个空字符串。认为这比从DataSet中读取结果更好。谁能看到什么错了?
代码:
protected void ListView1_ItemCreated(object sender, ListViewItemEventArgs e)
{
HtmlTableRow myTR = (HtmlTableRow)e.Item.FindControl("trRow");
HtmlTableCell myTC = (HtmlTableCell)e.Item.FindControl("tdCell");
// Retrieve the current item.
ListViewItem item = e.Item;
// Verify if the item is a data item.
if (item.ItemType == ListViewItemType.DataItem)
{
// Get the Label ResultLabel1 control in the item.
Label myCB = (Label)item.FindControl("ResultLabel1");
if (myCB.Text.Equals("True"))
myTC.Style.Value = "background-color:#00FF00;color: #000000;";
else
myTC.Style.Value = "background-color:#FF0000;color: #000000;";
}
}
ASP.NET:
<ItemTemplate>
<tr id="trRow" runat="server" style="">
<td>
<asp:Label ID="idLabel" runat="server" Text='<%# Eval("id") %>' />
</td>
<td>
<asp:Label ID="DateTime_StartLabel" runat="server"
Text='<%# Eval("DateTime_Start") %>' />
</td>
<td>
<asp:Label ID="DateTime_EndLabel" runat="server"
Text='<%# Eval("DateTime_End") %>' />
</td>
<td>
<asp:Label ID="TestCaseNameLabel" runat="server"
Text='<%# Eval("TestCaseName") %>' />
</td>
<td>
<asp:Label ID="ModelNameLabel" runat="server" Text='<%# Eval("ModelName") %>' />
</td>
<td id="tdCell" runat="server">
<asp:Label ID="ResultLabel1" runat="server"
Text='<%# Eval("Result") %>' />
</td>
</tr>
</ItemTemplate>
答案 0 :(得分:2)
如果您因数据绑定而进行此着色,则可能更好地处理ItemDataBound
事件而不是ItemCreated
。