リンクbtnが正しく表示されない
<th style="width:200px;">
<asp:LinkButton id="linkBtn" runat="server" Text='<%# Eval("Title") %>' OnCommand="LoadCheckListRecordEntry"/>
</th>
'Text'内のデータは、リンクbtnとして表示されません。通常のテキストでは、ユーザーがクリックすると、意図したとおりに実行されますが、視覚的な表現では、異なるbtnは表示されません。それと次の行??
編集:
<asp:Repeater id="rptChecklistRecords" runat="server">
<HeaderTemplate>
<table class="detailstable FadeOutOnEdit">
<tr>
<th style="width:200px;">Title</th>
<th style="width:200px;">Timestamp</th>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr>
<th style="width:200px;">
<asp:LinkButton id="linkBtn" runat="server" Text='<%# Eval("Title") %>' OnCommand="LoadCheckListRecordEntry"/>
</th>
<th style="width:200px;"><%# Eval("Timestamp") %></th>
</tr>
</ItemTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
</asp:Repeater>
</asp:Content>