ListView の挿入、削除などのボタンの変更は、通常の asp:button であるため問題ありませんが、ListView でページングが有効になっている場合、ページ ボタン (つまり、最初と最後) を変更するにはどうすればよいですか?
それらは次のタイプです。
<asp:DataPager ID="DataPager1" runat="server">
<Fields>
<asp:NextPreviousPagerField ButtonType="Button" ShowFirstPageButton="True"
ShowNextPageButton="False" ShowPreviousPageButton="False" />
<asp:NumericPagerField />
<asp:NextPreviousPagerField ButtonType="Button" ShowLastPageButton="True"
ShowNextPageButton="False" ShowPreviousPageButton="False" />
</Fields>
</asp:DataPager>
ForeColor および BackColor 属性を変更するだけです。