我有一个链接 btn,单击它会执行它应该执行的任务。但是,它不会显示为链接 btn,它只是看起来像一段普通的文本。
我已将其缩小到我的 css 文件中的某个位置,该属性的文本装饰设置为无。
然而,有太多的参考资料要逐一阅读以弄清楚它是哪一个。
我可以写一个新的css来覆盖以前的css吗?
我的尝试是:
a.linkBtn {
text-decoration: underline;
color: blue
}
<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" CssClass="linkBtn" runat="server" Text='<%# Eval("Title") %>' OnCommand="LoadCheckListRecordEntry"/>
</th>
<th style="width:200px;"><%# Eval("Timestamp") %></th>
</tr>
</ItemTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
我的代码是:
<asp:LinkButton id="linkBtn" CssClass="linkBtn" runat="server" Text='<%# Eval("Title") %>' OnCommand="LoadCheckListRecordEntry"/>