リンクボタンがあり、クリックするとタスクが実行されます。ただし、リンクとしては表示されず、通常のテキストのように見えます。
そのプロパティのテキスト装飾がなしに設定されている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"/>