ChecklistRecordEntry =
(from CRE in db.Checklist_Record_Entries
where CRE.Check_List_Records_Id == checklistRecordId
select CRE).ToList();
foreach (Checklist_Record_Entry CRE in ChecklistRecordEntry)
{
comment.Text = CRE.Comment;
}
2つのレコードが「ChecklistRecordEntry」に保存されているので、それらをループしてラベル「comment」にバインドしたいのですが、ループが回るたびに前のレコードを書き換えます
<asp:Label ID="comment" runat="server" />
ループを一周するたびに、同じラベルを使用する代わりに、前のラベル(画面に表示されます)の下に新しいラベルを追加します...ありがとうございます
返信ありがとうございます。すべての良い助け...テーブルの別々の行内に各レコードを表示しようとすると少し問題が発生しますが
<table class="detailstable FadeOutOnEdit">
<tr>
<th style="width:200px;"></th>
<th style="width:200px;">Item</th>
<th style="width:200px;"></th>
<th style="width:200px;"></th>
<th style="width:200px;"><asp:Label ID="CommentHeader" Text="Comment" /></th>
</tr>
<tr>
<th></th>
<th></th>
<th></th>
<th></th>
<th style="width:200px;"><asp:Label ID="Comment" runat="server"/></th>
</tr>
</table>
結果をすべて1つのセル内に表示します...何かアイデアはありますか?