链接 btn 未按应有的方式显示
<th style="width:200px;">
<asp:LinkButton id="linkBtn" runat="server" Text='<%# Eval("Title") %>' OnCommand="LoadCheckListRecordEntry"/>
</th>
“文本”内的数据不会显示为 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>